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.
我有一个应用程序,其中包含一个用于直接键入内容的“datagridview”。它看起来像一个记事本。
现在我需要一个解决方案,我想在两个已添加/键入的行之间添加一行。请帮助我找到解决方案。
您可以使用DataGridView.Rows.Insert(int rowIndex, DataGridViewRow dataGridViewRow)可以在特定/所需索引处插入 DataRow 的方法。
DataGridView.Rows.Insert(int rowIndex, DataGridViewRow dataGridViewRow)
MSDN上的更多详细信息
插入方法的重载