/// <summary> /// 整单打折 /// </summary> public void Btn_All_Click(object sender, EventArgs e) { initPic(); this.Btn_All.Image = Properties.Resources.整单打折3; this.panelInfor.Visible = false; CloseMemberCard(); this.panelChildren.Controls.Clear(); AllOrder ao = new AllOrder(memberConsumptionsid); ao.Owner = this; ao.TopLevel = false; ao.Dock = System.Windows.Forms.DockStyle.Fill; this.panelChildren.Controls.Add(ao); ao.Show(); this.lbTitle.Text = "整单打折"; }