In WPF, a DataRowView is a customized view of a DataRow.
Can or how to convert DataRow to DataRowView? For example: DataTable dt=ds.Tables[0]; DataRow dr= dt.NewRow(); DataRowView drv = ????
c# winforms dataview datarowviewI am trying to programmatically add a new row to a binding source . I know calling the bsSource.AddNew() adds …
vb.net datarow bindingsource datarowview