hello there is a code
<Application.Resources> <Style TargetType="Button" x:Key="style"> <Style.Triggers> <Trigger Property="IsPressed" Value="true"> <Setter Property="Background" Value="Black"/> <Setter Property="BorderBrush" Value="Blue"/> <Setter Property="BorderThickness" Value="3"/> </Trigger> </Style.Triggers> <Style.Setters> <Setter Property="Background" Value="Red"/> <Setter Property="BorderBrush" Value="Blue"/> <Setter Property="BorderThickness" Value="10"/> </Style.Setters> </Style> </Application.Resources>
written in the app.xaml file; Po only works for some reason Background Other styles do not work for some reason what I do wrong Button
<Button Style="{StaticResource style}" Height="100" Width="300"/>