frmThridPayConfig.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.OAShopManagement
  11. {
  12. public partial class frmThridPayConfig : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public frmThridPayConfig()
  15. {
  16. InitializeComponent();
  17. btn_AliCancel.Click += btn_AliCancel_Click;
  18. btn_AliCheck.Click += btn_AliCheck_Click;
  19. btn_AliOK.Click += btn_AliOK_Click;
  20. btn_Check.Click += btn_Check_Click;
  21. btn_Update.Click += btn_Update_Click;
  22. rdo_WXAgentBtn.Click += rdo_WXAgentBtn_Click;
  23. rdo_WXAutonomyBtn.Click += rdo_WXAgentBtn_Click;
  24. rdo_ZFBAgentBtn.Click += rdo_WXAgentBtn_Click;
  25. rdo_ZFBAutonomyBtn.Click += rdo_WXAgentBtn_Click;
  26. rdo_WXAgentBtn_Click(null,null);
  27. }
  28. public void rdo_WXAgentBtn_Click(object sender, EventArgs e)
  29. {
  30. if (rdo_WXAgentBtn.Checked)
  31. {
  32. groupBoxEx1.Height = 118;
  33. groupBoxEx1.Refresh();
  34. }
  35. else if (rdo_WXAutonomyBtn.Checked)
  36. {
  37. groupBoxEx1.Height = 200;
  38. groupBoxEx1.Refresh();
  39. }
  40. else if (rdo_ZFBAgentBtn.Checked)
  41. {
  42. }
  43. else if (rdo_ZFBAutonomyBtn.Checked)
  44. {
  45. }
  46. }
  47. public virtual void btn_Update_Click(object sender, EventArgs e)
  48. {
  49. //throw new NotImplementedException();
  50. }
  51. public virtual void btn_Check_Click(object sender, EventArgs e)
  52. {
  53. // throw new NotImplementedException();
  54. }
  55. public virtual void btn_AliOK_Click(object sender, EventArgs e)
  56. {
  57. //throw new NotImplementedException();
  58. }
  59. public virtual void btn_AliCheck_Click(object sender, EventArgs e)
  60. {
  61. //throw new NotImplementedException();
  62. }
  63. public virtual void btn_AliCancel_Click(object sender, EventArgs e)
  64. {
  65. ///throw new NotImplementedException();
  66. }
  67. }
  68. }