Hi, I have been trying to collapse 1 of 2 grids inside a grid, but the parent grid always collapses these 2 children grids.
<Grid x:Name="ParentGrid">
<Grid x:Name="ChildGrid1">
</Grid>
<Grid x:Name="ChildGrid2">
</Grid>
</Grid>
...
this.ChildGrid1.Visibility = Visibility.collapsed;