frmMicroWeiXinPayConfig.cs 1006 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 frmMicroWeiXinPayConfig : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public frmMicroWeiXinPayConfig()
  14. {
  15. InitializeComponent();
  16. btn_Check.Click += btn_Check_Click;
  17. btn_OK.Click += btn_OK_Click;
  18. btn_Cancel.Click += btn_Cancel_Click;
  19. }
  20. protected virtual void btn_Cancel_Click(object sender, EventArgs e)
  21. {
  22. this.Close();
  23. }
  24. protected virtual void btn_OK_Click(object sender, EventArgs e)
  25. {
  26. //throw new NotImplementedException();
  27. }
  28. protected virtual void btn_Check_Click(object sender, EventArgs e)
  29. {
  30. //throw new NotImplementedException();
  31. }
  32. }
  33. }