Jordan-C
Jordan-C

Reputation: 123

Disable Navigation in DataGridView - C#

How would I disable the navigation within a DataGridView? I am unsure of as to why this is as all properties have been 'disabled' or turned to false.

Upvotes: 0

Views: 786

Answers (1)

UWSkeletor
UWSkeletor

Reputation: 941

There is a property on the DataGridView called "SelectionMode" that you can set to "FullRowSelect" which only allows the user to select rows.

Upvotes: 2

Related Questions