首页 > 代码库 > .net开发杂记

.net开发杂记

怎样让DataGridView不显示最后一行  this.dataGridView1.AllowUserToAddRows = false;

怎样获取DataGridView中的cell值   dataGridView1.Rows[i].Cells["Column_CheckBox"]

怎样实时获得checkbox的修改  "如果要改变checkbox值时实时触发CellValueChanged()事件,需要借用CurrentCellDirtyStateChanged()事件来提交未提交控件的更改。" http://blog.csdn.net/goodshot/article/details/48374699

.net开发杂记