What is difference between " * " and "Auto" in Silverlight Grid Layout Definitions
Posted
by user203687
on Stack Overflow
See other posts from Stack Overflow
or by user203687
Published on 2010-05-21T18:37:16Z
Indexed on
2010/05/21
18:40 UTC
Read the original article
Hit count: 324
silverlight-4.0
trying to understand the following:
<Grid Name="Root">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
</Grid>
Can anyone help me in explaining the difference between * and Auto in the above snippet?
thanks
© Stack Overflow or respective owner