2016-02-29 121 views

回答

1

解決方案: 只需添加另一個網格行到你的頁面,並實現一個CommandBar有:

<Grid> 
 
     <Grid.RowDefinitions> 
 
      <RowDefinition /> 
 
      <RowDefinition /> 
 
      <RowDefinition Height="Auto"/> 
 
     </Grid.RowDefinitions> 
 
     <... Grid.Row="0"/> 
 
     <... Grid.Row="1"/> 
 
     <CommandBar Grid.Row="2"/> 
 
</Grid>