How do bind a List<object> to a DataGrid in Silverlight?
- by Ben McCormack
I'm trying to create a simple Silverlight application that involves parsing a CSV file and displaying the results in a DataGrid. I've configured my application to parse the CSV file to return a List<CSVTransaction> that contains properties with names: Date, Payee, Category, Memo, Inflow, Outflow.
The user clicks a button to select a file to…