2017-01-11 11 views

答えて

3

に建てられたヘッダを持つピボットハブのようなコントロールは、そのうちの一つは次のようにit..somethingするグリッドを定義し、行の定義を追加することです。..オプションでは、さまざまな方法でこれを達成することができます。..ありますこの..

<Grid> 
<Grid.RowDefinitions> 
<RowDefinition Height="Auto"/> 
<RowDefinition Height="Auto"/> 
</Grid.RowDefinitions> 
<Textblock Text="Pizza Size" Grid.Row="0" Margin="5"> 
<StackPanel Grid.Row="1" BorderThickness="1"> 
     <RadioButton Content="Small"/> 
     <RadioButton Content="Medium"/> 
     <RadioButton Content="Large"/>    
</StackPanel> 
</Grid> 

ここでは、あなたが始めるためにUWPアプリケーションのためのデザインとUI導入するlinkです!これが役に立てば幸いです。

関連する問題