Select Rows from a DataGrid and send to an Array

0

I have an application in WPF where I have a DataGrid with various information. I would like the user to be able to choose multiple rows and store the row information in an array (or not) so I can send it to another screen and play in another DataGrid .

I'm doing without CheckBox , but I prefer that the selected line changes color ...

Could someone give me an example or a solution to this problem?

    
asked by anonymous 09.06.2015 / 17:30

1 answer

-1

It would make a column in the grid of type hidden with the checkbox, and when selecting, would add in a list in its controller. Maybe this link can help you:

link

    
09.06.2015 / 19:28