とても単純なようですが、何らかの理由で 4 時間作業しても結果が得られません。2 つの列といくつかの行が既に入力されている単純な Gridview があり、次の行に ComboBoxCell を追加したいと考えています。
私は私のロジックを示します。多分あなたは私に私のエラーを見せてくれるでしょう:
SampleGridView.Rows.Add("test1", "test1");
SampleGridView.Rows.Add("test2", "test2");
SampleGridView.Rows.Add("test3", "test3");
3 行で正常に動作するようになりました。ComboBox を挿入しています。
DataGridViewRow RowSample = new DataGridViewRow();
DataGridViewComboBoxCell CellSample = new DataGridViewComboBoxCell();
CellSample.DataSource = StringList; // list of the items that I want to insert in ComboBox
RowSample.Cells.Add(CellSample);
SampleGridView.Rows.Add(RowSample);
何か案は?ありがとうございました