Reputation: 1323
When I set this.grv.TabStop = true
(grv's type is DataGridView) , taborder effect with each cell in DataGridView. I want tab to DataGridView only stop in first row of list. How can I do? Thanks in advance!
Upvotes: 1
Views: 337
Reputation: 125247
Set DataGridView.StandardTab property to 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.
Upvotes: 2