我在Style
:
App.xaml
<!-- TextboxErrorStyle-->
<Style x:Key="TextboxErrorStyle" TargetType="TextBox" >
<Setter Property="Margin" Value="7" />
<Setter Property="Background" Value="#FFFFCBCB" />
</Style>
但现在,当我的Window
加载时,我想在代码中更改Background
属性,这可能吗?
感谢。