WPF 资源字典使用方式

目录

  • 一、资源字典
  • 二、使用步骤
    • 1.建立资源字典
    • 2.具体内容
    • 3.整合资源到App.Xaml


一、资源字典

WPF资源字典可以自定义样式,并且可以在其他的同类控件中使用相同样式,所以应用比较广泛,而且功能较强,可以自己规定样式,但是相较于Winform会比较复杂。

二、使用步骤

1.建立资源字典

在项目名上右击直接选择添加 ----- 资源词典,即可完成初步创建
WPF 资源字典使用方式_第1张图片

2.具体内容

以按钮举例

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:local="clr-namespace:test.Dictionary">
   
    <Style x:Key="***">
        <Setter Property="Control.Template">
            <Setter.Value>
                <ControlTemplate>
                  <*****

你可能感兴趣的:(WPF,wpf)