Exemple #1
0
        /// <summary>
        /// 现金支付
        /// </summary>
        private void Btn_Cash_Click(object sender, EventArgs e)
        {
            initPic();
            this.Btn_Cash.Image     = Properties.Resources.现金支付3;
            this.panelInfor.Visible = false;
            CloseMemberCard();
            this.panelChildren.Controls.Clear();


            CashPayment cp = new CashPayment(memberConsumptionsid);

            cp.Owner    = this;
            cp.TopLevel = false;
            cp.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panelChildren.Controls.Add(cp);
            cp.Show();
            this.lbTitle.Text = "现金支付";
        }
Exemple #2
0
        /// <summary>
        /// 现金支付
        /// </summary>
        private void Btn_Cash_Click(object sender, EventArgs e)
        {
            initPic();
            this.Btn_Cash.Image = Properties.Resources.现金支付3;
            this.panelInfor.Visible = false;
            CloseMemberCard();
            this.panelChildren.Controls.Clear();

            CashPayment cp = new CashPayment(memberConsumptionsid);
            cp.Owner = this;
            cp.TopLevel = false;
            cp.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelChildren.Controls.Add(cp);
            cp.Show();
            this.lbTitle.Text = "现金支付";
        }