public void ShowF2(MainForm1 form1) { this.Show(); this.orderList = form1.orderList; }
public void ShowF4(MainForm1 form) { this.Show(); orderList = form.orderList; }
public void ShowF3(string customerName, string goodName, string quantity, uint odId, uint detailId, MainForm1 form) { this.txtCustomer.Text = customerName; this.txtGoods.Text = goodName; this.txtNums.Text = quantity; this.odId = odId; this.detailId = detailId; this.orderList = form.orderList; this.Show(); }