有没有人知道如何在Visual Studio .Net中使用DataGridView的图标编写“删除图像按钮”
我正在努力找到试图让我的最后一列有删除图标而不是单词“删除”,我想显示一个小垃圾箱图标。
我曾尝试过那么多地方,我无法让它发挥作用。
Private Sub dataGridView1_CellPainting(ByVal sender As Object, ByVal e As
DataGridViewCellPaintingEventArgs)
If e.ColumnIndex = 1 AndAlso e.RowIndex >= 0 Then
e.Paint(e.CellBounds, DataGridViewPaintParts.All)
Dim img As Image = Image.FromFile("C:\icon_delete.jpg")
e.Graphics.DrawImage(img, e.CellBounds.Left + 10, e.CellBounds.Top + 5, 10, 10)
e.Handled = True
End If
End Sub
如果有人知道,会感激一些帮助。提前致谢。 Kuldip。
答案 0 :(得分:3)
您可能希望看一下以下答案。我设法得到一个完整的解决方案。
问候
答案 1 :(得分:0)
您可以使用DataGridViewImageColumn和DataGridView.CellFormatting事件。
Private Sub YourDataGridView_CellFormatting(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellFormattingEventArgs) Handles dgvBilancioAttivita.CellFormatting
If e.ColumnIndex = -1 Or e.RowIndex = -1 Then Exit Sub
If YourDataGridView.Columns(e.ColumnIndex).Name = "YourDeleteColumn" Then
e.Value = Image.FromFile("C:\icon_delete.jpg")
End If
End Sub