0

我在我的应用程序中的多个地方使用DataTemplate(a StaticResource),如在 anItemsControlContentControla 中ToolTip

模板包含一个,如果位于 内Expander,我希望它的IsExpanded属性为真。DataTemplateToolTip

有什么建议吗?

4

1 回答 1

0

这将检查父工具提示,如果没有父工具提示,它将被评估为 nothing = false:

<Expander Name="expJobContacts" 
    IsExpanded="{Binding IsVisible, 
        RelativeSource={RelativeSource Mode=FindAncestor, 
            AncestorType={x:Type ToolTip}}, 
        Mode=OneTime}" />

我测试过,它有效。

于 2009-11-24T11:21:40.270 回答