2012-07-26 20 views

回答

2

你有两行定义和列定义:

<Grid> 
    <Grid.ColumnDefinitions> 
     <ColumnDefinition Width="250" /> 
     <ColumnDefinition Width="150" /> 
    </Grid.ColumnDefinitions> 
    <Grid.RowDefinitions> 
     <RowDefinition Height="Auto" /> 
     <RowDefinition Height="2*" /> 
     <RowDefinition Height="*"/> 
    </Grid.RowDefinitions> 
</Grid