[ACCEPTED]-WPF share column width between separate grids-styling
Accepted answer
It is possible by using SharedSizeGroup. Also check out 1 IsSharedSizeScope.
<GroupBox Grid.IsSharedSizeScope="True">
<Grid>
...
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" SharedSizeGroup="A" />
<GroupBox>
<Grid>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition SharedSizeGroup="A" />
See here for more information.
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.