UserControl 的访问属性

发布于 2024-12-16 01:39:32 字数 211 浏览 2 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

活雷疯 2024-12-23 01:39:32

如果您的 Canvas 在用户控件中,您可以使用

{Binding Path=propertyyouwant,RelativeSource={RelativeSource
  Mode=FindAncentor,AncestorType={x:Type UserControl}}}  

如果您的用户控件和画布位于同一控件/窗口中

<YourUserControl Name=myUserControl></YourUserControl>

{Binding Path=propertyyouwant,ElementName=myUserControl}

If your Canvas in in the UserControl you can use

{Binding Path=propertyyouwant,RelativeSource={RelativeSource
  Mode=FindAncentor,AncestorType={x:Type UserControl}}}  

If your usercontrol nad Canvas are in same Control/Window

<YourUserControl Name=myUserControl></YourUserControl>

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