vote up 0 vote down star

I have seen many examples of creating a WPF Toolkit DataGrid in XAML and it is possible to write certain tags and there will be some columns, rows, etc depending on what you wrote.

Lets say I have an empty (it has no columns, no rows, nothing) WPF Toolkit DataGrid that has been created in XAML how do I add columns in C# programmatically (not in XAML)?

Thank you for any help!

flag

1 Answer

vote up 2 vote down check

This should work for you.

MyDataGrid.Columns.Add(new DataGridTextColumn()
{
    Header="MyHeader", 
    Binding=new Binding("MyProperty")
});
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.