1

请让我知道在 infragistics webdatagrid 中单击按钮事件时是否可以添加多行。

谢谢

4

1 回答 1

1
DataGrid.Rows.Add("Value for Column1","Value for Column2","Value for Column3");

你也可以...

DataGrid.Rows[RowIndex].Cells[CelIndex].Value = "Your Value";

就是这样。

于 2013-09-24T15:36:43.270 回答