Based on what you see below is the sample of a datagridview that an item has been selected.
Here is my question what if I have a more than 1 Datagridview? I mean 5 Datagridview like this.
All of them contains 1 column only. Based on the 1st image, the row selector or the blue one select an item.
My question is how can I make all of the datagridview only have one row selector?
What happens is when i selected each of them all of it has a row selected 5 selections.
How can I make 1 row selector for all of them.
Thinking of changing the Selection Color but I think that's not applicable.
TYSM for future help.
CellSelect SelectiondMode
One row selector in all 5 datagridview – Shadow Fiendclearselection
for example you click datagrid1 then insertdg2.clearselection() dg3.clearselection()
and so on. then if you click datagrid2 then insertdg1.clearselection() dg3.clearselection()
and so on. – Mujdatagridview1.ClearSelection
? just add this code everytime i click a cell? – Shadow Fiend