示例#1
0
 //修改
 public A_CLIENT_OP(int op, A_CLIENT ac, DataGridViewRow dgvr)
 {
     InitializeComponent();
     this.op = op;
     this.ac = ac;
     this.dgvr = dgvr;
 }
示例#2
0
 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);
     }
 }
示例#3
0
 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;
 }
示例#4
0
 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();
 }
示例#5
0
 //添加
 public A_CLIENT_OP(int op, A_CLIENT ac)
 {
     InitializeComponent();
     this.op = op;
     this.ac = ac;
 }