Reputation: 883
If i select Full row, its getting selected at the same time i click my cursor to another cell, full row selection cleared. But i don't want to clear the full row selection. Selected full row should not clear.
Help me please.
Upvotes: 0
Views: 200
Reputation: 11105
If Tablix
.Multiselect
property is set to True
you can select multiple rows by pressing CTRL
(multiple non-continuous rows) or SHIFT
(multiple continuous rows). Selection in DataGridView
works like in Excel so you could also use CTRL+SHIFT+END
to select every rows from current row to last row.
Upvotes: 1