2.WPF样式基础
2.1 xaml 结构头部说明
<Window x:Class="ZhusuApp.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:hc="https://handyorg.github.io/handycontrol"
xmlns:prism="http://prismlibrary.com/">
</Window>

2.2 标签引用样式种类

2.3 样式说明

2.4 样式引用
TargetType="Button" : 上面这写法类似于CSS中的标签选择器,只应用于buton按钮
x:key="BaseStyle :上面这写法类似于CSS中的类选择器,只有标签引用了该样式才会生效,例:<Button Content="工单池" Style="{StaticResource BaseStyle} "/>
BasedOn:继承那个基类样式
注:在继承标签类型样式时必需写成{StaticResource {x:Type Button}} ,不可以写成这样子 {StaticResource Button}
BasedOn="{StaticResource {x:Type Button}}" :静态继承那个标签类型或样式
作者:admin 创建时间:2026-08-03 16:22
最后编辑:admin 更新时间:2026-08-03 16:37
最后编辑:admin 更新时间:2026-08-03 16:37