是否可以在代码中设置或更改样式资源的属性?

时间:2013-03-01 18:45:49

标签: windows-phone-7 xaml staticresource

在我的xaml页面上,我有一些使用相同样式的severel按钮。

<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>

是否可以设置按钮的宽度而不设置每个按钮的值?

(使用代码隐藏中的screenresolution计算宽度)

0 个答案:

没有答案