WPF 工具提示 ControlTemplate 访问定义元素属性
我通过创建适用于每个工具提示的应用程序级别类型化样式资源来重新设计默认工具提示。在工具提示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现以下解决方案有效。
I find the following solution works.