Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在DataGridView通过程序添加任何行之前删除第一行。
DataGridView
我宁愿从DataGridView属性中删除第一行,而不是通过程序删除。
任何想法怎么做?
谢谢
您似乎指的是可编辑项上的默认新行,DataGridView它允许用户使用 UI 向网格添加新行。
要阻止该行出现,您只需DataGridView.AllowUserToAddRows以编程方式或在设计器中将该属性设置为 false。
DataGridView.AllowUserToAddRows