frmActionPay.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI.OAShopManagement
  10. {
  11. public partial class frmActionPay : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public decimal amount { get; set; }
  14. /// <summary>
  15. /// 执行付款窗体
  16. /// </summary>
  17. public frmActionPay()
  18. {
  19. InitializeComponent();
  20. btn_Close.Click += btn_Click;
  21. }
  22. /// <summary>
  23. //绑定支付内容
  24. /// </summary>
  25. /// <param name="payType"></param>
  26. /// <param name="amount"></param>
  27. public virtual void BindInfoData(string payType,decimal _amount)
  28. {
  29. amount = _amount;
  30. lab_PayAmount.Text = _amount.ToString("0.00") + "元";
  31. this.lab_PayType.Text = payType;
  32. }
  33. /// <summary>
  34. /// 进程获取活动窗体的按键信息
  35. /// </summary>
  36. /// <param name="msg"></param>
  37. /// <param name="keyData"></param>
  38. /// <returns></returns>
  39. protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
  40. {
  41. if (keyData == Keys.Enter)
  42. {
  43. BindPayActionData();
  44. }
  45. else if (keyData == Keys.Escape)
  46. {
  47. btn_Click(null, null);
  48. }
  49. return base.ProcessCmdKey(ref msg, keyData);
  50. }
  51. /// <summary>
  52. /// 执行付款操作
  53. /// </summary>
  54. protected virtual void BindPayActionData()
  55. {
  56. if(lab_PayType.Text.IndexOf("微信")!=-1)
  57. {
  58. WeiXinPay(txt_AuCode.Text, amount);
  59. }
  60. else if(lab_PayType.Text.IndexOf("支付宝")!=-1)
  61. {
  62. AliyPay(txt_AuCode.Text, amount);
  63. }
  64. else
  65. {
  66. MessageBoxCustom.Show("未找到匹配的支付方式");
  67. }
  68. }
  69. /// <summary>
  70. /// 微信付款
  71. /// </summary>
  72. /// <param name="txtCode">付款码</param>
  73. /// <param name="amount">付款金额</param>
  74. protected virtual void WeiXinPay(string txtCode,decimal amount)
  75. {
  76. }
  77. /// <summary>
  78. /// 支付宝支付
  79. /// </summary>
  80. /// <param name="txtCode">付款码</param>
  81. /// <param name="amount">付款金额</param>
  82. protected virtual void AliyPay(string txtCode, decimal amount)
  83. {
  84. }
  85. public virtual void btn_Click(object sender, EventArgs e)
  86. {
  87. this.Close();
  88. }
  89. private void btn_OK_Click(object sender, EventArgs e)
  90. {
  91. BindPayActionData();
  92. }
  93. }
  94. }