2011-10-06 149 views
1

我有一個DataGridView有四列:Eng,Swe,更新和隱藏。循環通過datagridview列和複選框

End和Swe是普通字符串,更新和隱藏是複選框。

我要讓現在兩個按鈕:通過在列的更新更新所有複選框「全部更新」此按鈕應循環並將其值設置爲true(選中):

Button1的。

Button2:「隱藏」此按鈕應循環通過列隱藏中的所有複選框並將值設置爲true(選中)。

任何人都可以請幫助我如何做到這一點,如何讓程序明白,當我按下Button1時,應選中「更新」列中的所有複選框。

我很感謝所有的幫助。

回答

2
private void UpdateAllButton_Click(object sender, EventArgs e) 
    { 
     foreach (DataGridViewRow row in dataGridView1.Rows) 
     { 
      row.Cells["update"].Value = true; 
     } 
    } 

    private void HideButton_Click(object sender, EventArgs e) 
    { 
     foreach (DataGridViewRow row in dataGridView1.Rows) 
     { 
      row.Cells["hide"].Value = true; 
     } 
    } 
+0

非常感謝您的先生 – user911394