wpf的样式
作用所有按钮
<Window x:Class="GridDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:GridDemo"
mc:Ignorable="d"
Title="MainWindow" Height="300" Width="300">
<!-- 👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 -->
<Window.Resources>
<!--button按钮的样式-->
<Style TargetType="Button">
<Setter Property="Width" Value="100" ></Setter>
<Setter Property="Height" Value="50" ></Setter>
<Setter Property="Background" Value="Pink" ></Setter>
</Style>
</Window.Resources>
<UniformGrid Columns="2" Rows="2" >
<Button Content="Button1" />
<Button Content="Button2" />
<Button Width="100" Height="50" Content="Button3" Background="Orange" />
</UniformGrid>
</Window>
特定的类
<Window.Resources>
<!--button按钮的样式-->
<Style TargetType="Button" x:Key="myBtnStyle">
<Setter Property="Width" Value="100" ></Setter>
<Setter Property="Height" Value="50" ></Setter>
<Setter Property="Background" Value="Pink" ></Setter>
</Style>
</Window.Resources>
<UniformGrid Columns="2" Rows="2" >
<Button Content="Button1" Style="{StaticResource myBtnStyle}"/>
<Button Content="Button2" />
<Button Width="100" Height="50" Content="Button3" Background="Orange" />
</UniformGrid>
样式的继承
<Window x:Class="GridDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:GridDemo"
mc:Ignorable="d"
Title="MainWindow" Height="300" Width="300">
<Window.Resources>
<!--button按钮的样式-->
<Style TargetType="Button" x:Key="myBtnStyle">
<Setter Property="Width" Value="100" ></Setter>
<Setter Property="Height" Value="50" ></Setter>
<Setter Property="Background" Value="Pink" ></Setter>
</Style>
<!--继承: baseon-->
<Style x:Key="myBtnStyleSon" TargetType="Button" BasedOn="{StaticResource myBtnStyle}">
<Setter Property="Background" Value="Red" ></Setter>
</Style>
</Window.Resources>
<UniformGrid Columns="2" Rows="2" >
<Button Content="Button1" Style="{StaticResource myBtnStyle}"/>
<Button Content="Button2" Style="{StaticResource myBtnStyleSon}"/>
<Button Width="100" Height="50" Content="Button3" Background="Orange" />
</UniformGrid>
</Window>