123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.UI.OAShopManagement
- {
- public partial class frmActionPay : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public decimal amount { get; set; }
- /// <summary>
- /// 执行付款窗体
- /// </summary>
- public frmActionPay()
- {
- InitializeComponent();
- btn_Close.Click += btn_Click;
-
- }
- /// <summary>
- //绑定支付内容
- /// </summary>
- /// <param name="payType"></param>
- /// <param name="amount"></param>
- public virtual void BindInfoData(string payType,decimal _amount)
- {
- amount = _amount;
- lab_PayAmount.Text = _amount.ToString("0.00") + "元";
- this.lab_PayType.Text = payType;
- }
- /// <summary>
- /// 进程获取活动窗体的按键信息
- /// </summary>
- /// <param name="msg"></param>
- /// <param name="keyData"></param>
- /// <returns></returns>
- protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
- {
- if (keyData == Keys.Enter)
- {
- BindPayActionData();
- }
- else if (keyData == Keys.Escape)
- {
- btn_Click(null, null);
- }
- return base.ProcessCmdKey(ref msg, keyData);
- }
- /// <summary>
- /// 执行付款操作
- /// </summary>
- protected virtual void BindPayActionData()
- {
- if(lab_PayType.Text.IndexOf("微信")!=-1)
- {
- WeiXinPay(txt_AuCode.Text, amount);
- }
- else if(lab_PayType.Text.IndexOf("支付宝")!=-1)
- {
- AliyPay(txt_AuCode.Text, amount);
- }
- else
- {
- MessageBoxCustom.Show("未找到匹配的支付方式");
- }
- }
- /// <summary>
- /// 微信付款
- /// </summary>
- /// <param name="txtCode">付款码</param>
- /// <param name="amount">付款金额</param>
- protected virtual void WeiXinPay(string txtCode,decimal amount)
- {
- }
- /// <summary>
- /// 支付宝支付
- /// </summary>
- /// <param name="txtCode">付款码</param>
- /// <param name="amount">付款金额</param>
- protected virtual void AliyPay(string txtCode, decimal amount)
- {
- }
- public virtual void btn_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- private void btn_OK_Click(object sender, EventArgs e)
- {
- BindPayActionData();
- }
-
- }
- }
|