WPF,麻烦看下这个Grid的布局
<Grid Width="auto" Height="auto">
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition Height="auto"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto"></ColumnDefinition>
<ColumnDefinition ></ColumnDefinition>
<ColumnDefinition ></ColumnDefinition>
</Grid.ColumnDefinitions>
<Button Content="Button" Grid.Row="1" Height="23" HorizontalAlignment="Left"
Margin="0,0,0,0" Name="Button1" VerticalAlignment="Top" Width="75" />
</Grid>