2

这里似乎可以为 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’创建‘类型’。”

4

1 回答 1

2

以下对我有用:

<Style TargetType="{x:Type xctk:WatermarkTextBox}" 
       BasedOn="{StaticResource {x:Type xctk:WatermarkTextBox}}">

尝试和属性中使用x:Type标记扩展。TargetTypeBasedOn

于 2015-07-15T06:36:02.213 回答