WPF 工具提示 ControlTemplate 访问定义元素属性

发布于 2024-08-23 17:08:34 字数 312 浏览 6 评论 0原文

我通过创建适用于每个工具提示的应用程序级别类型化样式资源来重新设计默认工具提示。在工具提示 ControlTemplate 中,我需要从定义实际工具提示的元素访问(绑定到)属性值。定义元素可以是任何类型。绑定RelativeSource FindAncestor 仅适用于指定的AncestorType,不适用于任何其他未指定的类型。所以我的问题是,AncestorType 是否可以设置为 Any,或者不适用,但仅使用 AncestorLevel? controlTemplate 是否有其他方法来访问定义元素属性的工具提示?

任何想法都值得赞赏。

谢谢,

I am restyling the default tooltip by creating an Application level typed style resource which applies to every tooltips. In the tooltip ControlTemplate, I need to access (Binding to) a property value from the element which defines the actual tooltip. The defining element can be of any type. Binding RelativeSource FindAncestor works only for the specified AncestorType, not any other unspecified types. So my questions are, Can the AncestorType set to Any, or not applicable, but use AncestorLevel only? Is there other way for the controlTemplate to access the tooltip defining element's properties?

Any thought is appreciated.

Thanks,

Q

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一紙繁鸢 2024-08-30 17:08:34

我发现以下解决方案有效。

{Binding RelativeSource={RelativeSource FindAncestor, AncestorType=Popup}, 
         Path=PlacementTarget.TheDesiredPropertyNameHere}

I find the following solution works.

{Binding RelativeSource={RelativeSource FindAncestor, AncestorType=Popup}, 
         Path=PlacementTarget.TheDesiredPropertyNameHere}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文