0

如何将按钮放入列内的行中?

   <Grid.ColumnDefinitions>
        <ColumnDefinition Width="200" />
        <ColumnDefinition MinWidth="300" Width="*" />
    </Grid.ColumnDefinitions>
    <Grid Grid.Column="1">
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="*"/>
            <RowDefinition MaxHeight="50" MinHeight="50"/>
        </Grid.RowDefinitions>
    </Grid>

Grid.Row="2" 超出索引。Grid.Colum="1" 将按钮放入正确的列。使用这些行的正确方法可能是什么?

4

1 回答 1

2

您最初的行索引猜测是正确的。您只需将按钮放在 XAML 中的适当位置。

<Grid>
  <Grid.ColumnDefinitions>
    <ColumnDefinition Width="200" />
    <ColumnDefinition MinWidth="300" Width="*" />
  </Grid.ColumnDefinitions>
  <Grid Grid.Column="1">
    <Grid.RowDefinitions>
        <RowDefinition Height="*"/>
        <RowDefinition Height="*"/>
        <RowDefinition MaxHeight="50" MinHeight="50"/>
    </Grid.RowDefinitions>
    <Button Grid.Row="2"/>
  </Grid>
</Grid>
于 2017-09-26T17:58:33.297 回答