示例#1
0
文件: Cobro.cs 项目: moisesiq/aupaga
        private void btnFormaDePagoLibre_Click(object sender, EventArgs e)
        {
            var frmForma = new FormasDePago();

            frmForma.FormasDePagoSel = this.FormasDePagoLibre;
            if (frmForma.ShowDialog(Principal.Instance) == DialogResult.OK)
            {
                this.FormasDePagoLibre = frmForma.FormasDePagoSel;
            }
            frmForma.Dispose();
        }
示例#2
0
 private void btnFormaDePagoLibre_Click(object sender, EventArgs e)
 {
     var frmForma = new FormasDePago();
     frmForma.FormasDePagoSel = this.FormasDePagoLibre;
     if (frmForma.ShowDialog(Principal.Instance) == DialogResult.OK)
         this.FormasDePagoLibre = frmForma.FormasDePagoSel;
     frmForma.Dispose();
 }