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.
请让我知道在 infragistics webdatagrid 中单击按钮事件时是否可以添加多行。
谢谢
DataGrid.Rows.Add("Value for Column1","Value for Column2","Value for Column3");
你也可以...
DataGrid.Rows[RowIndex].Cells[CelIndex].Value = "Your Value";
就是这样。