编程语言
首页 > 编程语言> > c# – PropertyGrid:ExpandableObjectConverter出现问题

c# – PropertyGrid:ExpandableObjectConverter出现问题

作者:互联网

我创建了一个在PropertyGrid中显示的类,它包含另一个类;我希望这个类可以扩展,所以我尝试添加[TypeConverter(typeof(ExpandableObjectConverter))]但它似乎不起作用.这是我尝试的一个简单示例:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

        this.propertyGrid1.SelectedObject = new Class1();
    }
}

public class Class1
{
    string name;

    public string Name
    {
        get { return this.name; }
        set { this.name = value; }
    }

    Class2 class2;

    public Class2 Class2
    {
        get { return this.class2; }
        set { this.class2 = value; }
    }
}

[TypeConverter(typeof(ExpandableObjectConverter))]
public class Class2
{
    string stuff = "none";

    public string Stuff
    {
        get { return this.stuff; }
        set { this.stuff = value; }
    }
}

当在属性网格中显示时,Class1实例的Class2属性不可扩展.为什么这不起作用的任何想法?

谢谢!

解决方法:

您的Class2类型的属性不会扩展,因为它是null.只是实例化你的财产,一切都会好的:

Class2 class2 = new Class2();

标签:c,propertygrid
来源: https://codeday.me/bug/20190613/1233940.html