Problem with multirow selection in DataGridView control
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I have a DataGridView control on a form. It as one DataGridViewComboBoxColumn column. DataGridView control is not bound to any datatable or collection. I am populating it manually. Suppose DataGridViewComboBoxColumn has items 'CCW' and 'CW'. User can select either of these. While closing the form I am just reading the column values. So for its fine till MultiSelect is set to False. I want to change DataGrid's behavior to multi select row. User can select multiple rows and change the property to 'CW' or 'CCW' and it should get applicable to all the selected rows in the grid. How I can achieve it?