派生用户控件:MissingMethodException:构造函数

时间:2018-02-09 07:31:39

标签: c# .net

我想创建一个从DataGridView派生的UserControl:

剥离示例:

compile group: "org.springframework.data", name: "spring-data-neo4j"

它位于一个单独的DLL中,我已成功将其添加到工具箱中。但是当在表单上拖动它时,我从Visual Studio得到了一个例外:

public class XXX : System.Windows.Forms.DataGridView
{
    public XXX() : base()
    {
    }

    protected override void OnPaint(PaintEventArgs pe)
    {
        base.OnPaint(pe);
    }
}

(似乎与Winforms User Control MissingMethodException中的错误相同)

如图所示,我有“空”构造函数。怎么了?我在哪里可以搜索更多信息?

0 个答案:

没有答案