c# datagridview 当按钮单击时允许用户添加行
c# datagridview when button click allow user to add rows
在表单加载时,我已将 属性 AllowUserToAddRows
设置为 false
DGV_PatientSessions.AllowUserToAddRows = false;
并且在 运行 时有一个按钮,单击该按钮会将 属性 AllowUserToAddRows
更改为 true
DGV_PatientSessions.AllowUserToAddRows = true;
但什么都没发生有人能帮忙吗?
检查这些设置
- DataGridView 中的数据是如何绑定的
你的数据网格是只读的吗
此外,您能否post 可重现的代码。
在表单加载时,我已将 属性 AllowUserToAddRows
设置为 false
DGV_PatientSessions.AllowUserToAddRows = false;
并且在 运行 时有一个按钮,单击该按钮会将 属性 AllowUserToAddRows
更改为 true
DGV_PatientSessions.AllowUserToAddRows = true;
但什么都没发生有人能帮忙吗?
检查这些设置
- DataGridView 中的数据是如何绑定的 你的数据网格是只读的吗
此外,您能否post 可重现的代码。