我在应用程序的多个位置使用DataTemplate
(StaticResource
} ItemsControl
,ContentControl
和ToolTip
。< / p>
模板包含Expander
,如果IsExpanded
位于DataTemplate
内,我希望其ToolTip
属性为真。
有什么建议吗?
答案 0 :(得分:0)
这会检查父工具提示,如果没有父工具提示,它将被评估为nothing = false:
<Expander Name="expJobContacts"
IsExpanded="{Binding IsVisible,
RelativeSource={RelativeSource Mode=FindAncestor,
AncestorType={x:Type ToolTip}},
Mode=OneTime}" />
我测试过它。