<RowDefinition Height="50"/> <RowDefinition Height="*"/> <RowDefinition Height="3*"/>
<RowDefinition Height="50 in"/> <RowDefinition Height="50 pt"/> <RowDefinition Height="50 cm"/>
Regards, Sheo Narayan http://www.dotnetfunda.com
<RowDefinition x:Name="row1" Height="*"></RowDefinition>
row1.Height = new GridLength(200); row1.Height = new GridLength(200, GridUnitType.Pixel); row1.Height = new GridLength(3,GridUnitType.Star);
Login to post response