在datagridview的两行之间添加一个新行c#

时间:2013-07-09 06:25:29

标签: c# .net datagridview

Datagridview display

我正在尝试做的是,如果用户点击例如放置在“随机”行中的按钮,则在[stringtext]中的“random”和“string”之间的运行时会出现一个新行column..the用户只能添加“stringtext”,添加行后每个datagridview行增加一行......有什么想法?

2 个答案:

答案 0 :(得分:1)

PPUTDG.Rows.Insert(rowIndex, count);

可能是你在找什么?

答案 1 :(得分:0)

要插入行:

dataGrid.Rows.Insert(indexWhereToInsertTheRow, values, toPopulate, theRow);  

使其在运行时出现:

dataGrid.Refresh();