UserControl 的访问属性
我有一个 UserControl,其中有一个 Canvas 作为内容。在构造添加到主画布的用户控件时,我将基本路径(其中具有几何图形作为数据)添加到画布。
然后我对主 Canvas 执行 HitTest
以获取可见元素。 HitTest
仅返回 Path 类型的对象。我需要一种方法来访问此路径所属的用户控件的其他属性/变量。有办法做到吗?
I have a UserControl which has a Canvas
as Content. I add basic Path (which has Geometry as Data) to the canvas when constructing the UserControl which I add to the main Canvas.
Then I do a HitTest
against the main Canvas to get the visible elements. The HitTest
returns objects of type Path only. I need a way to access other Property/variables of the UserControl that this Path is a member of. Is there a way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的
Canvas
在用户控件中,您可以使用如果您的用户控件和画布位于同一控件/窗口中
If your
Canvas
in in the UserControl you can useIf your usercontrol nad Canvas are in same Control/Window