Grid Star-Size in code behind

Aks picture Aks · Mar 28, 2011 · Viewed 24.8k times · Source

I have a grid as follows,

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="0.5*" />
        <RowDefinition Height="0.5*" />
    </Grid.RowDefinitions>
</Grid>

How do I give the Height = "0.5*" in code behind?

Answer

CodeNaked picture CodeNaked · Mar 28, 2011

You can use:

rowDefinition.Height = new GridLength(0.5, GridUnitType.Star);