V.V
V.V

Reputation: 883

How to prevent clear full row selection mode when click the cell in datagridview?

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

Answers (1)

tezzo
tezzo

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

Related Questions