0
我有這樣的XAML:WPF - 編輯資源在運行時
<Grid x:Name="root">
<Grid.Resources>
<Style x:Key="btnStyle">
<Setter Property="Button.Background" Value="LightBlue"/>
</Style>
</Grid.Resources>
<Button Style="{DynamicResource btnStyle}"></Button>
</Grid>
,我的問題是,我怎麼能在btnStyle二傳手值從代碼更改爲紅色的背後?