禁止DataGridView控件中添加和删除行
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁止DataGridView控件中添加和删除行相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
DataGridView控件的AllowUserToAddRows
AllowUserDeleteRows和ReadOnly属性
实现代码:
private void btn_no_Click(object sender, EventArgs e) { dataGridView1.AllowUserToAddRows = false; dataGridView1.AllowUserToDeleteRows = false; dataGridView1.ReadOnly = true; }
以上是关于禁止DataGridView控件中添加和删除行的主要内容,如果未能解决你的问题,请参考以下文章