Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Winform アプリケーションに datagridview があります。追加ボタンをクリックすると、datagridview の下部に空白行が挿入されます。
私はこれを試しました:
dataGridView1.Rows.Add(row);
ただし、空白行は下部ではなく上部に挿入されます。一番下に入れる方法はありますか?
メソッドを使用できますInsert:
Insert
dataGridView1.Rows.Insert(dataGridView1.Rows.Count-1, row);