在 PropertryGrid 中的类实例中展开类实例

发布于 2024-08-26 18:36:32 字数 417 浏览 5 评论 0原文

在 C# 中,我有一个像这样设置的类:

class Page
{
  public class Element
  {
   private string test;
   public string Test
   { get { return test; } set { test = value; } }
  }

 private Element element;
 public Element PrimaryElement
 { get { return element; } set { element = value; } }
}

如果我有一个 PropertyGrid,其中选择对象是 Page 的实例,我如何从 PropertyGrid 修改其成员 PrimaryElement 中的 Test?它显示为灰色,并且不可扩展或可编辑。

In C#, I have a class set up like so:

class Page
{
  public class Element
  {
   private string test;
   public string Test
   { get { return test; } set { test = value; } }
  }

 private Element element;
 public Element PrimaryElement
 { get { return element; } set { element = value; } }
}

If I have a PropertyGrid where the select object is an instance of Page, how can I modify Test in its member PrimaryElement from the PropertyGrid? It shows up in grey and is not expandable nor editable.

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

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

发布评论

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

评论(1

九局 2024-09-02 18:36:32

将其添加到您的 Element 类型或 PrimaryElement 属性中:

[TypeConverter(typeof(ExpandableObjectConverter))]

Add this to your Element type or to your PrimaryElement property:

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