datagridview セルの背景をイメージ (ビットマップ) で設定することは可能ですか?
1 に答える
2
以下の関数の使用をご覧ください。
Private Sub DataGridView1_RowPostPaint(sender As Object, e As System.Windows.Forms.DataGridViewRowPostPaintEventArgs) Handles DataGridView1.RowPostPaint
End Sub
また
Private Sub DataGridView1_CellPainting(sender As Object, e As System.Windows.Forms.DataGridViewCellPaintingEventArgs) Handles DataGridView1.CellPainting
End Sub
于 2012-10-11T16:40:16.090 に答える