The problem is that it is not installed:
I define a pattern:
<Window.Resources> <Style x:Key="ButtonTemplate" TargetType="{x:Type Button}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="Button"> <Grid> <Border BorderBrush="#FF797979" BorderThickness="1" > <ContentPresenter HorizontalAlignment="Center"/> </Border> </Grid> </ControlTemplate> </Setter.Value> </Setter> </Style> </Window.Resources> <Button Style="{StaticResource ButtonTemplate}" Content="Кнопка" Name="my_button"/>
When changing the background does not change:
my_button.Background = Brushes.AliceBlue;
Tell me.