GoldCardManagementSmallForm.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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.SetSmallForm
  11. {
  12. public partial class GoldCardManagementSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public GoldCardManagementSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  19. this.panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor;
  20. this.labelEx7.ForeColor = UIBlueThemeResources.TitleTextColor;
  21. this.labelEx10.ForeColor = UIBlueThemeResources.TitleTextColor;
  22. this.labelEx11.ForeColor = UIBlueThemeResources.TitleTextColor;
  23. this.labelEx12.ForeColor = UIBlueThemeResources.TitleTextColor;
  24. this.labelEx13.ForeColor = UIBlueThemeResources.TitleTextColor;
  25. this.labelEx14.ForeColor = UIBlueThemeResources.TitleTextColor;
  26. this.labelEx15.ForeColor = UIBlueThemeResources.TitleTextColor;
  27. this.Load += new EventHandler(GoldManagementSmallForm_Load);
  28. this.btnRecharge.Click += new EventHandler(btnRecharge_Click);
  29. this.btnCash.Click += new EventHandler(btnCash_Click);
  30. this.btnChangingCard.Click += new EventHandler(btnChangingCard_Click);
  31. this.btnModifyData.Click += new EventHandler(btnModifyData_Click);
  32. this.btnPassword.Click += new EventHandler(btnPassword_Click);
  33. this.btnRetrievePassword.Click += btnRetrievePassword_Click;
  34. this.btnSendPoint.Click += new EventHandler(btnSendPoint_Click);
  35. this.btnTurnPoints.Click += new EventHandler(btnTurnPoints_Click);
  36. this.btnRedeemPoint.Click += new EventHandler(btnRedeemPoint_Click);
  37. this.btnLogout.Click += new EventHandler(btnLogout_Click);
  38. this.btnRedeemLog.Click += new EventHandler(btnRedeemLog_Click);
  39. this.btnUseLog.Click += new EventHandler(btnUseLog_Click);
  40. this.btnCashbackInfo.Click += new EventHandler(btnCashbackInfo_Click);
  41. this.btnOpenBackCashCard.Click += btnOpenBackCashCard_Click;
  42. this.btnService.Click += btnService_Click;
  43. this.btnServicePaymentRecord.Click += btnServicePaymentRecord_Click;
  44. this.btnServiceUseRecord.Click += btnServiceUseRecord_Click;
  45. this.btnRechargeLog.Click += btnRechargeLog_Click;
  46. this.btnBackCashTakeCash.Click += btnBackCashTakeCash_Click;
  47. this.btnUpdateType.Click += btnUpdateType_Click;
  48. this.btnPhotographerConference.Click += btnPhotographerConference_Click;
  49. this.btnMyPhotographerConference.Click += btnMyPhotographerConference_Click;
  50. this.btnPhotographerConferenceRecord.Click += btnPhotographerConferenceRecord_Click;
  51. this.btn_DisInfo.Click += Btn_DisInfo_Click;
  52. }
  53. protected virtual void Btn_DisInfo_Click(object sender, EventArgs e)
  54. {
  55. }
  56. /// <summary>
  57. /// 窗体加载事件
  58. /// </summary>
  59. /// <param name="sender"></param>
  60. /// <param name="e"></param>
  61. protected virtual void GoldManagementSmallForm_Load(object sender, EventArgs e)
  62. {
  63. //throw new NotImplementedException();
  64. }
  65. /// <summary>
  66. /// 充值
  67. /// </summary>
  68. /// <param name="sender"></param>
  69. /// <param name="e"></param>
  70. protected virtual void btnRecharge_Click(object sender, EventArgs e)
  71. {
  72. //throw new NotImplementedException();
  73. }
  74. /// <summary>
  75. /// 提现
  76. /// </summary>
  77. /// <param name="sender"></param>
  78. /// <param name="e"></param>
  79. protected virtual void btnCash_Click(object sender, EventArgs e)
  80. {
  81. //throw new NotImplementedException();
  82. }
  83. /// <summary>
  84. /// 更换卡号
  85. /// </summary>
  86. /// <param name="sender"></param>
  87. /// <param name="e"></param>
  88. protected virtual void btnChangingCard_Click(object sender, EventArgs e)
  89. {
  90. //throw new NotImplementedException();
  91. }
  92. /// <summary>
  93. /// 修改资料
  94. /// </summary>
  95. /// <param name="sender"></param>
  96. /// <param name="e"></param>
  97. protected virtual void btnModifyData_Click(object sender, EventArgs e)
  98. {
  99. //throw new NotImplementedException();
  100. }
  101. /// <summary>
  102. /// 密码设置
  103. /// </summary>
  104. /// <param name="sender"></param>
  105. /// <param name="e"></param>
  106. protected virtual void btnPassword_Click(object sender, EventArgs e)
  107. {
  108. //throw new NotImplementedException();
  109. }
  110. /// <summary>
  111. /// 找回密码
  112. /// </summary>
  113. /// <param name="sender"></param>
  114. /// <param name="e"></param>
  115. protected virtual void btnRetrievePassword_Click(object sender, EventArgs e)
  116. {
  117. //throw new NotImplementedException();
  118. }
  119. /// <summary>
  120. /// 赠送积分
  121. /// </summary>
  122. /// <param name="sender"></param>
  123. /// <param name="e"></param>
  124. protected virtual void btnSendPoint_Click(object sender, EventArgs e)
  125. {
  126. //throw new NotImplementedException();
  127. }
  128. /// <summary>
  129. /// 转介绍积分
  130. /// </summary>
  131. /// <param name="sender"></param>
  132. /// <param name="e"></param>
  133. protected virtual void btnTurnPoints_Click(object sender, EventArgs e)
  134. {
  135. //throw new NotImplementedException();
  136. }
  137. /// <summary>
  138. /// 兑换积分
  139. /// </summary>
  140. /// <param name="sender"></param>
  141. /// <param name="e"></param>
  142. protected virtual void btnRedeemPoint_Click(object sender, EventArgs e)
  143. {
  144. //throw new NotImplementedException();
  145. }
  146. /// <summary>
  147. /// 注销此卡
  148. /// </summary>
  149. /// <param name="sender"></param>
  150. /// <param name="e"></param>
  151. protected virtual void btnLogout_Click(object sender, EventArgs e)
  152. {
  153. //throw new NotImplementedException();
  154. }
  155. /// <summary>
  156. /// 积分记录
  157. /// </summary>
  158. /// <param name="sender"></param>
  159. /// <param name="e"></param>
  160. protected virtual void btnRedeemLog_Click(object sender, EventArgs e)
  161. {
  162. //throw new NotImplementedException();
  163. }
  164. /// <summary>
  165. /// 使用记录
  166. /// </summary>
  167. /// <param name="sender"></param>
  168. /// <param name="e"></param>
  169. protected virtual void btnUseLog_Click(object sender, EventArgs e)
  170. {
  171. //throw new NotImplementedException();
  172. }
  173. /// <summary>
  174. /// 返现信息
  175. /// </summary>
  176. /// <param name="sender"></param>
  177. /// <param name="e"></param>
  178. protected virtual void btnCashbackInfo_Click(object sender, EventArgs e)
  179. {
  180. //throw new NotImplementedException();
  181. }
  182. /// <summary>
  183. /// 发放返现副卡
  184. /// </summary>
  185. /// <param name="sender"></param>
  186. /// <param name="e"></param>
  187. protected virtual void btnOpenBackCashCard_Click(object sender, EventArgs e)
  188. {
  189. //throw new NotImplementedException();
  190. }
  191. /// <summary>
  192. /// 服务资料
  193. /// </summary>
  194. /// <param name="sender"></param>
  195. /// <param name="e"></param>
  196. protected virtual void btnService_Click(object sender, EventArgs e)
  197. {
  198. //throw new NotImplementedException();
  199. }
  200. /// <summary>
  201. /// 服务收款记录
  202. /// </summary>
  203. /// <param name="sender"></param>
  204. /// <param name="e"></param>
  205. protected virtual void btnServicePaymentRecord_Click(object sender, EventArgs e)
  206. {
  207. //throw new NotImplementedException();
  208. }
  209. /// <summary>
  210. /// 服务使用记录
  211. /// </summary>
  212. /// <param name="sender"></param>
  213. /// <param name="e"></param>
  214. protected virtual void btnServiceUseRecord_Click(object sender, EventArgs e)
  215. {
  216. //throw new NotImplementedException();
  217. }
  218. /// <summary>
  219. /// 充值记录
  220. /// </summary>
  221. /// <param name="sender"></param>
  222. /// <param name="e"></param>
  223. protected virtual void btnRechargeLog_Click(object sender, EventArgs e)
  224. {
  225. //throw new NotImplementedException();
  226. }
  227. /// <summary>
  228. /// 返现提现
  229. /// </summary>
  230. /// <param name="sender"></param>
  231. /// <param name="e"></param>
  232. protected virtual void btnBackCashTakeCash_Click(object sender, EventArgs e)
  233. {
  234. //throw new NotImplementedException();
  235. }
  236. /// <summary>
  237. /// 修改卡类型
  238. /// </summary>
  239. /// <param name="sender"></param>
  240. /// <param name="e"></param>
  241. protected virtual void btnUpdateType_Click(object sender, EventArgs e)
  242. {
  243. //throw new NotImplementedException();
  244. }
  245. /// <summary>
  246. /// 办理摄友会
  247. /// </summary>
  248. /// <param name="sender"></param>
  249. /// <param name="e"></param>
  250. protected virtual void btnPhotographerConference_Click(object sender, EventArgs e)
  251. {
  252. //throw new NotImplementedException();
  253. }
  254. /// <summary>
  255. /// 我的摄友会
  256. /// </summary>
  257. /// <param name="sender"></param>
  258. /// <param name="e"></param>
  259. protected virtual void btnMyPhotographerConference_Click(object sender, EventArgs e)
  260. {
  261. //throw new NotImplementedException();
  262. }
  263. /// <summary>
  264. /// 摄友会记录
  265. /// </summary>
  266. /// <param name="sender"></param>
  267. /// <param name="e"></param>
  268. protected virtual void btnPhotographerConferenceRecord_Click(object sender, EventArgs e)
  269. {
  270. //throw new NotImplementedException();
  271. }
  272. }
  273. }