for(int n=2;n<this.c1FlexGrid1.Rows.Count;n++)
{
if(this.c1FlexGrid1.Rows[n].Selected==true)
{
this.c1FlexGrid1[n,0]="";
this.c1FlexGrid1.Rows[n].Visible=false;
this.c1FlexGrid1[n,3]="";
int o=1;
for(int m=2;m<this.c1FlexGrid1.Rows.Count-1;m++)
{
if(this.c1FlexGrid1[m,0].ToString()!="")
{
this.c1FlexGrid1[m,0]=o.ToString();
o++;
}
}
}
}
这个是批量删除,希望能帮到你!