J'ai une grille comme suit,
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="0.5*" />
<RowDefinition Height="0.5*" />
</Grid.RowDefinitions>
</Grid>
Comment puis-je donner le Height = "0.5*"
dans le code derrière?
Vous pouvez utiliser:
rowDefinition.Height = new GridLength(0.5, GridUnitType.Star);
grid.RowDefinitions[0].Height = new GridLength(0.5, GridUnitType.Star);