Do Thanh Tung
Do Thanh Tung

Reputation: 1323

Winform C# Taborder of DataGridView only in first row

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

Answers (1)

Reza Aghaei
Reza Aghaei

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

Related Questions