0

在我的 xaml 页面上,我有使用相同样式的严格按钮。

<phone:PhoneApplicationPage.Resources>
    <Style x:Key="NumberButtonStyle" TargetType="Button">
        ::
        <Setter Property="Width" Value="183" />
        <Setter Property="Height" Value="130" />
        ::
    </Style>
</phone:PhoneApplicationPage.Resources>


<Button Style="{StaticResource NumberButtonStyle}" Click="NumberButtonClick" CommandParameter="1">1</Button>

是否可以在不设置每个按钮的值的情况下设置按钮的宽度?

(宽度是使用代码隐藏中的屏幕分辨率计算的)

4

0 回答 0