C# Winform中DataGridView的DataGridViewCheckBoxColumn CheckBox選中判斷

來源:互聯網
上載者:User

標籤:

1、DataGridViewCheckBoxColumn CheckBox是否選中

在判斷DataGridView中CheckBox選中列的時候,用DataGridViewRow.Cells[0].FormattedValue.ToString()=="True"語句時存在問題,當我們直接點 擊CheckBox時,結果顯示未選中,但是如果我們在點擊其他儲存格時,結果顯示選中。而用DataGridViewRow.Cells[0].EditedFormattedValue.ToString()=="True"語句時不管怎麼樣 是選中的狀態。

為什麼會有這種結果?

  原因:就是FormattedValue是操作提交後的結果,而EditedFormattedValue是當前的結果,不管結果是否已經提交。

  所以用DataGridViewRow.Cells[0].EditedFormattedValue.ToString()=="True"判斷選中比較合適

DataGridViewCheckBoxColumn 設定CheckBox預設選中

   ((DataGridViewCheckBoxCell)dgvDownloadList.Rows[i].Cells["Column1"]).Value = true;

1 if (dgvDownloadList.Rows.Count > 0)2 {3     for (int i = 0; i < dgvDownloadList.Rows.Count; i++)4     {5         string _selectValue = dgvDownloadList.Rows[i].Cells["Column1"].EditedFormattedValue.ToString();6         if (_selectValue == "True")7            //如果CheckBox已選中,則在此處繼續編寫代碼8      }9 } 

 

2、DataGridViewCheckBoxColumn 第一時間擷取CheckBox的選中狀態

  當點擊或者取消datagridview的checkbox列時,比較難獲得其狀態是選中還是未選中,進而不好進行其它操作,下面就列出它的解決辦法:

  CommitEdit :將目前的儲存格中的更改提交到資料緩衝,但不結束編輯模式 

 1 dgvDownloadList.CurrentCellDirtyStateChanged += new EventHandler(dgvDownloadList_CurrentCellDirtyStateChanged); 2  dgvDownloadList.CellValueChanged += new DataGridViewCellEventHandler(dgvDownloadList_CellValueChanged); 3    4 void dgvDownloadList_CurrentCellDirtyStateChanged(object sender, EventArgs e) 5 { 6      if (dgvDownloadList.IsCurrentCellDirty) 7      { 8          dgvDownloadList.CommitEdit(DataGridViewDataErrorContexts.Commit); 9      }            10 }11   12 void dgvDownloadList_CellValueChanged(object sender, DataGridViewCellEventArgs e)13 {14      if (dgvDownloadList.Rows.Count > 0)15      {16          for (int i = 0; i < dgvDownloadList.Rows.Count; i++)17          {18              string _selectValue = dgvDownloadList.Rows[i].Cells["Column1"].EditedFormattedValue.ToString();19              if (_selectValue == "True")20                  //如果CheckBox已選中,則在此處繼續編寫代碼21          }22       }23 }

 轉載:http://blog.csdn.net/yhj821129/article/details/6290899#

 

  

C# Winform中DataGridView的DataGridViewCheckBoxColumn CheckBox選中判斷

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.