CollectionEditor 的父级

发布于 2024-12-10 16:17:53 字数 512 浏览 2 评论 0原文

我有一个这样的属性:

[Editor(typeof(LayerCollection), typeof(UITypeEditor))]
public List<Layer> Layers { get { return layers; } }

我有一个从 CollectionEditor 派生的 LayerCollection 类。这个Layers属性位于Canvas类中。现在,Layer 对象需要了解作为集合父级的 Canvas 类。那么如何获得名为LayerCollection的CollectionEditor的父级呢?

或者如果不可能,我可以在创建时向 CollectionEditor 传递一个参数吗?通过这种方式,我可以在创建时将 Canvas 对象作为参数传递给 Layer。

I have a property like that:

[Editor(typeof(LayerCollection), typeof(UITypeEditor))]
public List<Layer> Layers { get { return layers; } }

And I have a LayerCollection class that derived from CollectionEditor. And this Layers property is in Canvasclass. Now, the Layer object needs to know about Canvas class which is the parent of the collection. So how can I get the parent of the CollectionEditor named LayerCollection?

Or if it is impossible, can I pass a parameter to the CollectionEditor when it is created? By this way I can pass the Canvas object as a parameter to the Layer when it is created.

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

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

发布评论

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

评论(1

留一抹残留的笑 2024-12-17 16:17:53

“Hans Passant”在第一篇文章的评论中回答了我的问题:

EditValue() 的第一个参数是 ITypeDescriptorContext,它为您提供所需的上下文。其 Instance 属性引用该控件。 ——汉斯·帕桑

"Hans Passant" answered my question in the first post's comment:

The first argument to EditValue() is an ITypeDescriptorContext that gives you the context you need. Its Instance property references the control. – Hans Passant

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