DevExpress GridView删除行

int[] rows = gridView1.GetSelectedRows();

if (rows.Length > )
{
if (DialogHelper.YesNo(this, "确认删除该记录?", "删除提示") != System.Windows.Forms.DialogResult.Yes) return; DataRowView drv = (DataRowView)gridView1.GetRow(rows[]); //_layerUpdater.b.Rows.Remove(drv.Row);
drv.Row.Delete();
}
上一篇:nginx全局命令配置


下一篇:如何使用Photoshop(PS)将图片的底色变为透明