Reputation: 123
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
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