Create a grid in WPF as Template programmatically
- by wickie79
I want to create a basic user control with a style programmatically.
In this style i want to add a Grid (no problem), but i dont can add column definitions to this grid.
My example code is
ControlTemplate templ = new ControlTemplate();
FrameworkElementFactory mainPanel = new FrameworkElementFactory(typeof(DockPanel));
…