tags:

views:

31

answers:

1

I have Datagridview .. selected a row .i want that row to be added to my list in other form

+2  A: 

You could use the OnClick event handler and then add the selected row into your List.

Ardman