DataGridViewを表示する単純なC#Windowsフォームアプリケーションがあります。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
は私のコンストラクターが見つからなかったと言うaを受け取ります。