wpf工具提示和样式

时间:2012-11-09 12:01:26

标签: wpf xaml tooltip

如何将工具提示添加到此代码

<Style TargetType="{x:Type ListBoxItem}">  

</Style> 

2 个答案:

答案 0 :(得分:2)

您可以使用与设置任何其他属性相同的方式设置ToolTip属性。

示例代码如下

<Style TargetType="{x:Type ListBoxItem}">  
    <Setter Property="ToolTip" Value="ToolTip Value" />
</Style>

答案 1 :(得分:0)

使用更复杂的工具提示

<Style TargetType="{x:Type ListBoxItem}">  
    <Setter Property="ToolTip">
        <Setter.Value>
            <!--Content Here-->
            <!--<Grid> or <StackPanel> or <ContentPresenter>...-->
        </Setter.Value>
    </Setter>
</Style>