标签: c# winforms datagridview
当我将DataGridView的DataSource属性设置为DataTable时,有什么方法可以指定DataTable中的某些列不会自动绑定到DataGridView。
例如,如果我有一个DataTable,其列为“Id,Name”,那么我可以指定Id列不会显示在DataGridView中吗?我知道我可以在绑定后在DataGridView中设置一些Visible属性,但我可以在DataTable / DataColumn中指定吗?
答案 0 :(得分:1)
最好设置列及其绑定。
How to: Add and Remove Columns in the Windows Forms DataGridView Control Using the Designer
否则,您可以删除不需要的列:
How to: Hide Columns in the Windows Forms DataGridView Control Using the Designer