目的:创建一个资源字典,然后自动引入到各个Window或UserControl中,可以随意使用。
方式:
- 创建Style文件夹
- 在Style文件夹内创建一个ButtonStyleStyle.xaml的资源字典
示例如下:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="Button" x:Key="BtnStyle">
<Setter Property="Background" Value="Yellow"/>
<Setter Property="Width" Value="100"/>
<Setter Property="Height" Value="60"/>
</Style>
</ResourceDictionary>
- 在App.xaml中引入资源字典
代码示例如下:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!--<ResourceDictionary Source="/Style/BaseButtonStyle.xaml"/>-->
<ResourceDictionary Source="/Style/ButtonStyle.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
可以引入多个资源字典。
- 在Window界面使用样式
示例如下:
<Button Style="{StaticResource BtnStyle}" Content="Hi"/>
总结:也就是可以直接使用Style,而不需要在Window中显式引入Style。
标签:Style,示例,样式,Window,引入,WPF,全局,字典 From: https://www.cnblogs.com/redcode/p/18076953