在標準方法DataBindingComplete
我遍歷行/喜歡的cols爲:如何在這種情況下獲取單元名稱?
for (int row = 0; row < dataGridView1.Rows.Count; row++)
{
for (int column = 0; column < dataGridView1.Columns.Count; column++)
{
object value = dataGridView1[column, row].Value;
if (value != null && value.GetType() == typeof(string))
{
(...)
}
}
}
如何檢查單元名稱等作爲?
我試着這樣做:
if (dataGridView1[column, row].Name == "name")
{
}
編輯1 當我使用CellFormatting
那麼所有細胞開始橫向滾動跳後。似乎渲染有問題。看圖片。
你的意思是列名嗎? – Sach
你嘗試過'dataGridView1.Colums [column] .Name'。我認爲這是行得通的。 –
是的,列名 – OPV