为了将触发动画应用到ToolTip
我的应用程序中的所有 s,我使用了ControlTemplate
. 但是,当使用 a 时ControlTemplate
,ToolTip
我相信主题会失去其所有默认视觉属性。我如何保留除我覆盖的属性之外的所有属性?
使用以下代码
<ToolTip Opacity="0.8">
<ToolTip.Content>
<StackPanel>
<Label FontWeight="Bold" Background="DarkSlateBlue" Foreground="White">
WpfApplication1
</Label>
<Label>
Click to create another button
</Label>
</StackPanel>
</ToolTip.Content>
</ToolTip>
我得到了我想要的结果:
替代文字 http://img29.imageshack.us/img29/1488/controltemplateno.png
但是当我调整代码以使用 aControlTemplate
时:
<ControlTemplate x:Key="controltemplateToolTip" TargetType="{x:Type ToolTip}">
<ContentPresenter Content="{TemplateBinding Content}" />
<ControlTemplate.Triggers>
<EventTrigger RoutedEvent="ToolTip.Loaded">
<BeginStoryboard>
<Storyboard TargetProperty="Opacity">
<DoubleAnimation From="0" To="0.8" Duration="0:0:0.2" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</ControlTemplate.Triggers>
</ControlTemplate>
<Style TargetType="{x:Type ToolTip}">
<Setter Property="Template" Value="{StaticResource controltemplateToolTip}" />
</Style>
...
<ToolTip>
<ToolTip.Content>
<StackPanel>
<Label FontWeight="Bold" Background="DarkSlateBlue" Foreground="White">
WpfApplication1
</Label>
<Label>
Click to create another button
</Label>
</StackPanel>
</ToolTip.Content>
</ToolTip>
我得到以下信息:
替代文字 http://img43.imageshack.us/img43/8217/controltemplateyes.png
可以看到,没有维护主题默认边框、背景等。我不想明确设置这些,因为我希望它们根据用户的主题进行调整。我该如何补救?我会以错误的方式解决这个问题吗?