摘要:
private DataTable SwapRow(int index1,int index2,DataTable dt) { DataRow dr=dt.NewRow(); dr.ItemArray=dt.Rows[index1].ItemArray; dt.Rows[index1].ItemAr 阅读全文
摘要:
参考:http://blog.csdn.net/soarheaven/article/details/3267379 1.界面准备 (1)首先在form中添加一个DataGridView控件,将默认AllowDrop=false 的属性设置为True,否侧不能拖动! (2)对DataGridView 阅读全文