在 PropertryGrid 中的类实例中展开类实例
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加到您的 Element 类型或 PrimaryElement 属性中:
Add this to your Element type or to your PrimaryElement property: