private void dgvsetInfo_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex >= 0) { string setInfo_id = dgvRecord.Rows[e.RowIndex].Cells[this.columnId.Name].Value.ToString(); UCMemberParaView uc = new UCMemberParaView(); uc.uc = this; uc.wStatus = WindowStatus.View; uc.id = setInfo_id; base.addUserControl(uc, "会员参数设置-浏览", "emberParaView" + setInfo_id, this.Tag.ToString(), this.Name); } }