WinForm遍历DataGridaView
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WinForm遍历DataGridaView相关的知识,希望对你有一定的参考价值。
参考代码
private void btn_Sure_Click(object sender, EventArgs e) { try { for (int i = 0; i < myDataGridView1.Rows.Count; i++) { if (myDataGridView1.Rows[i].Cells["IsSelect"].Value != null) { if ((bool)myDataGridView1.Rows[i].Cells["IsSelect"].Value) { listdataRow.Add(myDataGridView1.Rows[i]); } } } this.DialogResult = System.Windows.Forms.DialogResult.OK; } catch (Exception ex) { MessageBoxShow(ex.Message); } }
以上是关于WinForm遍历DataGridaView的主要内容,如果未能解决你的问题,请参考以下文章