我的 datagridviewimagecolumn 不是以编程方式添加的,也是无界的。但其他文件受我的数据库限制。我需要一个简单的 if 子句语句,以便警告图像只会出现在库存少于 20 的行中。
问问题
5761 次
1 回答
0
您可以通过 datagridview_cellformatting 事件尝试
假设您已经在 Columnindex(0) 中有 DataGridViewImageColumn
Private Sub dgv_CellFormatting(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellFormattingEventArgs) Handles dgv.CellFormatting
Dim sHeader As String = dgv.Columns(e.ColumnIndex).Name
If sHeader = "stock" Then
If e IsNot Nothing Then
If e.Value IsNot Nothing Then
If e.Value < 20 then
Try
Dim img as Bitmap = new Bitmap("c:\images\littlemouse.jpg")
// Create DGV Image column
dgv.CurrentCell.Value = img;
dgv.Rows[dgv.CurrentCell.RowIndex].Cells[0].Value = img;
Catch ex As FormatException
e.Value = ""
End Try
End If
End If
End If
End If
End Sub
于 2013-05-28T14:43:21.673 回答