bdMain是BindingSource对象
bdMain.DataSource = datatable;
DataRowView row = bdMain.Current as DataRowView;
Console.WriteLine(row.Row.RowState);
row["CANCELREMARK"] = dialog.invalidResult;
Console.WriteLine(row.Row.RowState);
得到的结果都是
unchange
unchange
请问是什么原因