Using C#.Net 4.5, Visual Studio 2012 Ulti, WPF.
I\'ve got some old win-forms code that i wanted to do in this new WPF app.
code is the following:
<
See this answer:
Image Column in WPF DataGrid
To add a column in code after:
DataGridTextColumn textColumn1 = new DataGridTextColumn();
textColumn1.Header = "Your header";
textColumn1.Binding = new Binding("YourBindingField");
dg.Columns.Add(textColumn1);
Use DataGridTemplateColumn to add a custom column
See: How do I show image in wpf datagrid column programmatically?