摘要:
DataRow复制一行到另一个DataTable 下面两个方法是DataRow复制一行到另一个DataTable的,直接Add会出错“此行已属于另一个表”,其实以前就知道怎么做的,可每次要用到的时候还是犯糊涂,这次把它们记下来。 1.用DataRow.ItemArray DataTable t=new DataTable(); DataRow r=t.NewRow(); r... 阅读全文
摘要:
if (myDataGridView2.RectangleToScreen(myDataGridView2.ClientRectangle).Contains(Cursor.Position)) { label1.Text = "YES"; } 阅读全文