在VB.Net 2008中使用DataGridView。
我想冻结左列,以便在滚动时(如果滚动)该列仍保留在原位。
有人可以告诉我该怎么做吗?

最佳答案

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

08-27 01:47