DataGridView 的 Winform C# Taborder 仅在第一行
Winform C# Taborder of DataGridView only in first row
当我设置this.grv.TabStop = true
(grv 的类型是DataGridView)时,taborder 对DataGridView 中的每个单元格产生影响。我希望 DataGridView 的选项卡仅停在列表的第一行。我能怎么做?提前致谢!
将DataGridView.StandardTab属性设置为true
Gets or sets a value indicating whether the TAB key moves the focus to
the next control in the tab order rather than moving focus to the next
cell in the control.
当我设置this.grv.TabStop = true
(grv 的类型是DataGridView)时,taborder 对DataGridView 中的每个单元格产生影响。我希望 DataGridView 的选项卡仅停在列表的第一行。我能怎么做?提前致谢!
将DataGridView.StandardTab属性设置为true
Gets or sets a value indicating whether the TAB key moves the focus to the next control in the tab order rather than moving focus to the next cell in the control.