MemberDataSetSmallForm.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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.MembershipManage
  11. {
  12. public partial class MemberDataSetSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public MemberDataSetSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. this.Load += MemberDataSetSmallForm_Load;
  21. this.btnHomePage.Click += btnHomePage_Click;
  22. this.btnUpgradeSet.Click += btnUpgradeSet_Click;
  23. this.btnPointsSet.Click += btnPointsSet_Click;
  24. this.btnCashBackSet.Click += btnCashBackSet_Click;
  25. this.btnServiceContentSet.Click += btnServiceContentSet_Click;
  26. this.btnPackageServiceSet.Click += btnPackageServiceSet_Click;
  27. this.btnGradeSet.Click += btnGradeSet_Click;
  28. this.btnRechargeType.Click += btnRechargeType_Click;
  29. this.btnPhotographerConferenceSet.Click += btnPhotographerConferenceSet_Click;
  30. }
  31. /// <summary>
  32. /// 窗体加载事件
  33. /// </summary>
  34. /// <param name="sender"></param>
  35. /// <param name="e"></param>
  36. protected virtual void MemberDataSetSmallForm_Load(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. /// <summary>
  41. /// 首页
  42. /// </summary>
  43. /// <param name="sender"></param>
  44. /// <param name="e"></param>
  45. protected virtual void btnHomePage_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. /// <summary>
  50. /// 会员升级设置
  51. /// </summary>
  52. /// <param name="sender"></param>
  53. /// <param name="e"></param>
  54. protected virtual void btnUpgradeSet_Click(object sender, EventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. /// <summary>
  59. /// 会员积分设置
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. protected virtual void btnPointsSet_Click(object sender, EventArgs e)
  64. {
  65. //throw new NotImplementedException();
  66. }
  67. /// <summary>
  68. /// 返现比例设置
  69. /// </summary>
  70. /// <param name="sender"></param>
  71. /// <param name="e"></param>
  72. protected virtual void btnCashBackSet_Click(object sender, EventArgs e)
  73. {
  74. //throw new NotImplementedException();
  75. }
  76. /// <summary>
  77. /// 服务内容设置
  78. /// </summary>
  79. /// <param name="sender"></param>
  80. /// <param name="e"></param>
  81. protected virtual void btnServiceContentSet_Click(object sender, EventArgs e)
  82. {
  83. //throw new NotImplementedException();
  84. }
  85. /// <summary>
  86. /// 套系服务设置
  87. /// </summary>
  88. /// <param name="sender"></param>
  89. /// <param name="e"></param>
  90. protected virtual void btnPackageServiceSet_Click(object sender, EventArgs e)
  91. {
  92. //throw new NotImplementedException();
  93. }
  94. /// <summary>
  95. /// 会员等级设置
  96. /// </summary>
  97. /// <param name="sender"></param>
  98. /// <param name="e"></param>
  99. protected virtual void btnGradeSet_Click(object sender, EventArgs e)
  100. {
  101. //throw new NotImplementedException();
  102. }
  103. /// <summary>
  104. /// 会员充值类型设置
  105. /// </summary>
  106. /// <param name="sender"></param>
  107. /// <param name="e"></param>
  108. protected virtual void btnRechargeType_Click(object sender, EventArgs e)
  109. {
  110. //throw new NotImplementedException();
  111. }
  112. /// <summary>
  113. /// 摄友会类型设置
  114. /// </summary>
  115. /// <param name="sender"></param>
  116. /// <param name="e"></param>
  117. protected virtual void btnPhotographerConferenceSet_Click(object sender, EventArgs e)
  118. {
  119. //throw new NotImplementedException();
  120. }
  121. }
  122. }