//修改 public A_CLIENT_OP(int op, A_CLIENT ac, DataGridViewRow dgvr) { InitializeComponent(); this.op = op; this.ac = ac; this.dgvr = dgvr; }
private void btn_add(object sender, EventArgs e) { try { A_CLIENT sp = new A_CLIENT(); sp.MdiParent = this.MdiParent; sp.Show(); } catch (Exception ex) { MessageView.MessageErrorShow(ex); } }
private void button6_Click(object sender, EventArgs e) { A_CLIENT sp = new A_CLIENT(); sp.MdiParent = this.MdiParent; sp.Show(); this.FZ_KH.Visible = false; }
private void 客户ToolStripMenuItem_Click(object sender, EventArgs e) { if (OpenChildForm(typeof(A_CLIENT))) return; A_CLIENT c1 = new A_CLIENT(true); c1.MdiParent = this; c1.Show(); }
//添加 public A_CLIENT_OP(int op, A_CLIENT ac) { InitializeComponent(); this.op = op; this.ac = ac; }