[Solved] WPF creating grid from XAML in code-behind

You can do that by making your “existing grid” a separate UserControl. First, you need to add a UserControl via [Add]->[User Control…]->[User Control (WPF)]. Next, put your “existing grid” inside the added UserControl. YourExistingGridControl.xaml <UserControl x:Class=”Your.Namespace.YourExistingGridControl”> <Grid> … YOUR EMPTY GRID WITH ALL THE COLUMNS, ETC. … </Grid> </UserControl> Now, you can create as many … Read more