急如何取得datagrid中的记录总数?和要写在哪个事件中
急~~~~~~~~~~~~~~~~~~~~~~~~~~~怎么取得datagrid中的记录总数?和要写在哪个事件中?RT[解决办法]ds是你保存
急~~~~~~~~~~~~~~~~~~~~~~~~~~~怎么取得datagrid中的记录总数?和要写在哪个事件中?
RT
[解决办法]
ds是你保存数据的DataSet对象,怎么会没有的呢.
DataSet ds= new DataSet;
DataTable dt=ds.Table[0];
int count = dt.Rows.Count;
[解决办法]