将DataGridView与VB.Net 2008一起使用。 我想冻结左列,以便当/滚动时此列仍然保留在原位。 谁能告诉我怎么做?
答案 0 :(得分:11)
How to: Freeze Columns in the Windows Forms DataGridView Control:
以编程方式冻结列
将
DataGridViewColumn.Frozen
属性设置为true
:Me.dataGridView1.Columns("AddToCartButton").Frozen = True
How to: Freeze Columns in the Windows Forms DataGridView Control Using the Designer:
使用设计器冻结列
- 点击
DataGridView
控件右上角的智能标记字形,然后选择编辑列。- 从“选定列”列表中选择一列。
- 在“列属性”网格中,将
醇>Frozen
属性设置为true
。