无法降低单选按钮宽度

时间:2015-05-14 15:28:47

标签: xaml radio-button windows-phone-8.1

我有一个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>

它看起来像这样:

enter image description here

1 个答案:

答案 0 :(得分:8)

您可以更改MinWidth而不是Width

 <RadioButton x:Name="rbStaging" GroupName="ProductionLevel"  
                 IsChecked="true" Checked="SelectionChangedHandler" MinWidth="68" />

可能还需要减少TextBlock上的边距。希望有所帮助