答案 0 :(得分:3)
有像数据透视和集线器这样的控件,内置了标头。您可以选择以不同的方式实现此目的。其中一个是定义网格和向它添加行定义..像这样......
<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,以帮助您入门!希望这会有所帮助..