从这里似乎可以为 WpfToolkitIntegerUpDown
控件创建自定义隐式样式。
<Style TargetType="xctk:IntegerUpDown"
BasedOn="{StaticResource {x:Type xctk:IntegerUpDown}}">
不过,我似乎无法为 WpfToolkit 创建自定义隐式样式WatermarkTextBox
。我试过这个,但它没有编译:
<ResourceDictionary xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" ...>
<Style TargetType="xctk:WatermarkTextBox"
BasedOn="{StaticResource {x:Type xctk:WatermarkTextBox}}">...</Style>
产生错误:
无法从文本“xctk:WatermarkTextBox”创建“TargetType”
也试过:
<Style TargetType="{x:Type Control}" BasedOn="{StaticResource BaseStyle}" x:Key="WatermarkBaseStyle">
<Setter Property="FontSize" Value="24" />
</Style>
<Style TargetType="{x:Type xctk:WatermarkTextBox}" BasedOn="{StaticResource WatermarkBaseStyle}"/>
产生错误:
“无法从文本‘xctk:WatermarkTextBox’创建‘类型’。”