样式Style的使用
控件的Sytle属性可以赋予附带Setter的Style元素。Setter元素定义Property和Value属性,并给指定的属性设置一个值。
直接通过Button控件设置Style,设置Background,FontSize,FontWeight属性。把Style设置TargetType为Button,以便直接访问Button的属性。
<Button Width="150" Height="50" Content="Click Me!">
<Button.Style>
<Style TargetType="Button">
<Setter Property="Background" Value="Yellow"/>
<Setter Property="FontSize" Value="14"/>
<Setter Property="FontWeight" Value="Bold"/>
</Style>
</Button.Style>
</Button>
如果没有设置样式的TargtType,就可以通过Button.Background,Button.FontSize访问属性。如果需要设置不同元素类型的属性时,这就很重要。
<Button Width="150" Height="50" Content="Click Me!">
<Button.Style>
<Style>
<Setter Property="Button.Background" Value="Yellow"/>
<Setter Property="Button.FontSize" Value="14"/>
<Setter Property="Button.FontWeight" Value="Bold"/>
</Style>
</Button.Style>
</Button>
样式可以放在资源中,以实现共享的目的。
第一种样式赋予了Button类型的所有元素。把一个样式赋予某一类型的所有元素,使用Style的TargetType属性,并指定x:Type
第二种样式使用一个键,x:Key 单一元素组件可以引用此样式
<Window.Resources>
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="Yellow"/>
<Setter Property="FontSize" Value="18"/>
</Style>
<Style x:Key="BtnSytle">
<Setter Property="Button.Background" Value="Red"/>
<Setter Property="Button.FontSize" Value="18"/>
</Style>
</Window.Resources>
两种样式的使用,第一个按钮没有指定样式属性,而是使用的Button类型定义的样式,第二个按钮指定了Style并使用StaticResource指定了样式资源的键值BtnStyle
<StackPanel Orientation="Vertical">
<Button Width="150" Height="50" Content="Click Me!"/>
<Button Width="150" Height="50" Content="Click Me!" Style="{StaticResource BtnSytle}"/>
</StackPanel>
资源
样式通常存储在资源中。
基类FrameworkElement定义ResourceDictionary类型的Resources属性。所有派生自FrameworkElement所有类(任意WPF元素)都可以定义Resources资源。
上面示例资源用Window元素定义,它就会应用于Window的所有子元素,同理可以单独设置Grid,StackPanel等元素的资源,它就会应用于当前元素的所有子元素。
如果需要将一个样式应用于多个窗口,就可以用应用程序定义样式。在App.xaml中可定义应用程序的全局资源。
<Application x:Class="WpfApplication1.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Startup="Application_Startup">
<Application.Resources>
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="Yellow"/>
<Setter Property="FontSize" Value="18"/>
</Style>
<Style x:Key="BtnSytle">
<Setter Property="Button.Background" Value="Red"/>
<Setter Property="Button.FontSize" Value="18"/>
</Style>
</Application.Resources>
</Application>
从代码中访问资源
基类FrameworkElement实现FindResource()方法,所以每个WPF元素对象调用FindResource()方法,按照层次结构搜索资源。
<StackPanel Orientation="Vertical">
<StackPanel.Resources>
<Style x:Key="BtnStyle">
<Setter Property="Button.Background" Value="Red"/>
<Setter Property="Button.FontSize" Value="18"/>
</Style>
</StackPanel.Resources>
<Button Width="150" Height="50" Content="Click Me!" Click="Button_Click" Focusable="False"/>
</StackPanel>
private void Button_Click(object sender, RoutedEventArgs e)
{
Control ctrl = sender as Control;
ctrl.Style = ctrl.FindResource("BtnStyle") as Style;
}
动态资源
StaticResource标记扩展,是在加载期间搜索资源。如果在运行程序过程中改变了资源,就应该使用DynamicResource标记扩展
资源字典
如果相同的资源可用于不同的应用程序,把资源放在一个资源字典中比较有效。使用资源字典可以在多个应用程序之间共享文件。也可以吧资源字典放在一个程序集中,供应用程序共享。
创建资源字典:右击项目-添加-资源字典
创建Dictionary1.xaml
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="Yellow"/>
<Setter Property="FontSize" Value="18"/>
</Style>
<Style x:Key="BtnSytle">
<Setter Property="Button.Background" Value="Red"/>
<Setter Property="Button.FontSize" Value="18"/>
</Style>
</ResourceDictionary>
对应目标项目,需要把此资源字典添加到App.xaml中引用。使用方式就跟在App声明全局资源一样。
<Application x:Class="WpfApplication1.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Startup="Application_Startup">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Dictionary1.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
通过ResourceDirectionary的MergedDictionayies属性,可以添加多个资源字典文件。