我有一个Windows手机项目,我无法调整单选按钮的宽度。这是推动我的textblock
关闭屏幕。
这是我的Xaml代码:
<StackPanel x:Name="spRadioSelection" Orientation="Horizontal" Margin="0,100" HorizontalAlignment="Stretch">
<TextBlock Text="Staging" FontSize="24" Margin="30,20"></TextBlock>
<RadioButton x:Name="rbStaging" GroupName="ProductionLevel" IsChecked="true" Checked="SelectionChangedHandler" Width="68"/>
<RadioButton x:Name="rbLive" GroupName="ProductionLevel" IsChecked="false" Checked="SelectionChangedHandler"></RadioButton>
<TextBlock Text="Live" FontSize="32" Margin="30,20"></TextBlock>
</StackPanel>
它看起来像这样:
答案 0 :(得分:8)
您可以更改MinWidth
而不是Width
<RadioButton x:Name="rbStaging" GroupName="ProductionLevel"
IsChecked="true" Checked="SelectionChangedHandler" MinWidth="68" />
可能还需要减少TextBlock上的边距。希望有所帮助