我在DataGridview中有一個DataGridViewImageColumn。 我只想在某些行顯示圖像。但其他顯示矩形X. 那麼如何隱藏矩形X.DataGridView中的某些特定單元格中的顯示圖像#
在此先感謝。
我在DataGridview中有一個DataGridViewImageColumn。 我只想在某些行顯示圖像。但其他顯示矩形X. 那麼如何隱藏矩形X.DataGridView中的某些特定單元格中的顯示圖像#
在此先感謝。
你列NullValue
更改爲空的位圖:
ColImage.DefaultCellStyle.NullValue = new System.Drawing.Bitmap(1, 1);
或每行一個缺少Image
((DataGridViewImageCell)dataGridView1.Rows[0].Cells[0]).Value = new System.Drawing.Bitmap(1, 1);;
這是不是很優雅的方式,但它的工作。個人而言,我會創造我自己的空圖像,並用它爲細胞缺失值:)
使用
foreach (DataGridViewRow r in datagridview1.Rows)
{
}
循環分配的數據源datagridview1 後,你可以通過一個
你可以得到所有行的一個使用此循環中的條件來設置特定的單元格樣式
也許你可以嘗試爲Image列設置'DefaultCellStyle.NullValue = null;' – V4Vendetta