Modify the value of the DataTable corresponding to the current row. As follows: DATAROWVIEW DRV = (DATAROWVIEW) this.bindingcontext [this.ds, this.ds.tables [0] .tablename] .current; can change the data, you can also get DataRow DROW = Drv.Row;
The CURRENT object contains the value of the current item in the data source. To use the value of the current item, you must convert the item to the Type of the object included in DataSource. For example, DataTable includes a DataRowView object. To determine the type of the current object, use the GetType and Tositring methods.
Note When DataSource is DataSet, DataViewManager or DataTable, it is actually bound to DataView. Therefore, each Current object is DataRowView object.