我有一个简单的 C# Windows 窗体应用程序,它应该显示一个 DataGridView。作为 DataBinding,我使用了一个对象(选择了一个名为 Car 的类),它看起来像这样:
class Car
{
public string color { get; set ; }
public int maxspeed { get; set; }
public Car (string color, int maxspeed) {
this.color = color;
this.maxspeed = maxspeed;
}
}
但是,当我将 DataGridView 属性设置AllowUserToAddRows
为时true
,仍然没有小 * 允许我添加行。
有人建议设置carBindingSource.AllowAdd
为true
,但是,当我这样做时,我得到一个MissingMethodException
说我的构造函数找不到。