Add Rows/Columns to a Grid dynamically

44,720

To have a dynamic Grid size(column/row count), you can use helpers such as @Rachel 's WPF Grid’s Row/Column Count Properties

In your case, this depends on what exactly your trying to achieve as in most simple cases based on context, when there is a requirement such as:

Number of child user controls that need to be populated in the parent user control are determined at run time and can change. Basically the number depends on the search result. So it can be from 0 to n.

I'd prefer to go with an ItemsControl (Example). Use the ItemTemplate to link to your child UserControl's. If needed you can also tweak the ItemsPanel to control layout as you see fit.

Share:
44,720
WAQ
Author by

WAQ

Software Engineer - Diverse experience in cutting edge technologies (C#, WPF/MVVM, ASP.Net, SQL Server, Oracle, Crystal Reports, SAP, SAPConnector)

Updated on March 27, 2020

Comments

  • WAQ
    WAQ over 4 years

    I have a child UserControl comprising of multiple textboxes, labels, image etc. I need to populate this user control in a Parent User control which has a Grid.

    The number of child user controls that need to be populated in the parent user control are determined at run time and can change. Basically the number depends on the search result. So it can be from 0 to n.

    How can I populate my child user control in parent control? Or is there a better alternate to using a Grid control for this?

    Note: I have to do this in my ViewModel.

  • WAQ
    WAQ almost 11 years
    Excellent that is EXACTLY what I needed to do. Thanks bundles :)
  • user2330678
    user2330678 over 10 years
    I know its answered but to help others, please check msdn.microsoft.com/en-us/library/…