PointsSetSuperSmallForm.cs 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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.SuperSmallForm
  11. {
  12. public partial class PointsSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public PointsSetSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.labelEx14.ForeColor = UIBlueThemeResources.TitleTextColor;
  18. this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  19. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
  22. this.Shown += PointsSetSuperSmallForm_Shown;
  23. this.Load += PointsSetSuperSmallForm_Load;
  24. this.btnOK.Click += new EventHandler(btnOK_Click);
  25. this.btnClose.Click += btnClose_Click;
  26. this.btnDelete.Click += btnDelete_Click;
  27. this.btnAddDate.Click += btnAddDate_Click;
  28. this.btnTest.Click += btnTest_Click;
  29. this.dgvData.MouseDoubleClick += dgvData_MouseDoubleClick;
  30. this.txtAgoPeriod_Points.KeyPress += txtAgoPeriod_Points_KeyPress;
  31. this.txtAgoPeriod_RMB.KeyPress += txtAgoPeriod_RMB_KeyPress;
  32. this.txtBirthday_Day.KeyPress += txtBirthday_Day_KeyPress;
  33. this.txtBirthday_Month.KeyPress += txtBirthday_Month_KeyPress;
  34. this.txtDianqing_Day.KeyPress += txtDianqing_Day_KeyPress;
  35. this.txtDianqing_Month.KeyPress += txtDianqing_Month_KeyPress;
  36. this.txtLatePeriod_Points.KeyPress += txtLatePeriod_Points_KeyPress;
  37. this.txtLatePeriod_RMB.KeyPress += txtLatePeriod_RMB_KeyPress;
  38. this.txtPointsToRMB_Points.KeyPress += txtPointsToRMB_Points_KeyPress;
  39. this.txtPointsToRMB_RMB.KeyPress += txtPointsToRMB_RMB_KeyPress;
  40. this.txtReferral_Points.KeyPress += txtReferral_Points_KeyPress;
  41. this.txtReferral_RMB.KeyPress += txtReferral_RMB_KeyPress;
  42. this.txtWeddingAnniversary_Day.KeyPress += txtWeddingAnniversary_Day_KeyPress;
  43. this.txtWeddingAnniversary_Month.KeyPress += txtWeddingAnniversary_Month_KeyPress;
  44. }
  45. /// <summary>
  46. /// 窗体加载事件
  47. /// </summary>
  48. /// <param name="sender"></param>
  49. /// <param name="e"></param>
  50. protected virtual void PointsSetSuperSmallForm_Shown(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. /// <summary>
  55. /// 窗体加载事件
  56. /// </summary>
  57. /// <param name="sender"></param>
  58. /// <param name="e"></param>
  59. protected virtual void PointsSetSuperSmallForm_Load(object sender, EventArgs e)
  60. {
  61. //throw new NotImplementedException();
  62. }
  63. /// <summary>
  64. /// 确定
  65. /// </summary>
  66. /// <param name="sender"></param>
  67. /// <param name="e"></param>
  68. protected virtual void btnOK_Click(object sender, EventArgs e)
  69. {
  70. //throw new NotImplementedException();
  71. }
  72. /// <summary>
  73. /// 关闭
  74. /// </summary>
  75. /// <param name="sender"></param>
  76. /// <param name="e"></param>
  77. protected virtual void btnClose_Click(object sender, EventArgs e)
  78. {
  79. //throw new NotImplementedException();
  80. }
  81. /// <summary>
  82. /// 删除特定日期
  83. /// </summary>
  84. /// <param name="sender"></param>
  85. /// <param name="e"></param>
  86. protected virtual void btnDelete_Click(object sender, EventArgs e)
  87. {
  88. //throw new NotImplementedException();
  89. }
  90. /// <summary>
  91. /// 添加特定日期
  92. /// </summary>
  93. /// <param name="sender"></param>
  94. /// <param name="e"></param>
  95. protected virtual void btnAddDate_Click(object sender, EventArgs e)
  96. {
  97. //throw new NotImplementedException();
  98. }
  99. /// <summary>
  100. /// 测试
  101. /// </summary>
  102. /// <param name="sender"></param>
  103. /// <param name="e"></param>
  104. protected virtual void btnTest_Click(object sender, EventArgs e)
  105. {
  106. //throw new NotImplementedException();
  107. }
  108. /// <summary>
  109. /// 列表双击事件
  110. /// </summary>
  111. /// <param name="sender"></param>
  112. /// <param name="e"></param>
  113. protected virtual void dgvData_MouseDoubleClick(object sender, MouseEventArgs e)
  114. {
  115. //throw new NotImplementedException();
  116. }
  117. /// <summary>
  118. /// 前期消费_积分限制输入
  119. /// </summary>
  120. /// <param name="sender"></param>
  121. /// <param name="e"></param>
  122. protected virtual void txtAgoPeriod_Points_KeyPress(object sender, KeyPressEventArgs e)
  123. {
  124. //throw new NotImplementedException();
  125. }
  126. /// <summary>
  127. /// 前期消费_人民币限制输入
  128. /// </summary>
  129. /// <param name="sender"></param>
  130. /// <param name="e"></param>
  131. protected virtual void txtAgoPeriod_RMB_KeyPress(object sender, KeyPressEventArgs e)
  132. {
  133. //throw new NotImplementedException();
  134. }
  135. /// <summary>
  136. /// 生日_当天限制输入
  137. /// </summary>
  138. /// <param name="sender"></param>
  139. /// <param name="e"></param>
  140. protected virtual void txtBirthday_Day_KeyPress(object sender, KeyPressEventArgs e)
  141. {
  142. //throw new NotImplementedException();
  143. }
  144. /// <summary>
  145. /// 生日_当月限制输入
  146. /// </summary>
  147. /// <param name="sender"></param>
  148. /// <param name="e"></param>
  149. protected virtual void txtBirthday_Month_KeyPress(object sender, KeyPressEventArgs e)
  150. {
  151. //throw new NotImplementedException();
  152. }
  153. /// <summary>
  154. /// 店庆_当天限制输入
  155. /// </summary>
  156. /// <param name="sender"></param>
  157. /// <param name="e"></param>
  158. protected virtual void txtDianqing_Day_KeyPress(object sender, KeyPressEventArgs e)
  159. {
  160. //throw new NotImplementedException();
  161. }
  162. /// <summary>
  163. /// 店庆_当月限制输入
  164. /// </summary>
  165. /// <param name="sender"></param>
  166. /// <param name="e"></param>
  167. protected virtual void txtDianqing_Month_KeyPress(object sender, KeyPressEventArgs e)
  168. {
  169. //throw new NotImplementedException();
  170. }
  171. /// <summary>
  172. /// 后期消费_积分限制输入
  173. /// </summary>
  174. /// <param name="sender"></param>
  175. /// <param name="e"></param>
  176. protected virtual void txtLatePeriod_Points_KeyPress(object sender, KeyPressEventArgs e)
  177. {
  178. //throw new NotImplementedException();
  179. }
  180. /// <summary>
  181. /// 后期消费_人民币限制输入
  182. /// </summary>
  183. /// <param name="sender"></param>
  184. /// <param name="e"></param>
  185. protected virtual void txtLatePeriod_RMB_KeyPress(object sender, KeyPressEventArgs e)
  186. {
  187. //throw new NotImplementedException();
  188. }
  189. /// <summary>
  190. /// 积分换人民币_积分限制输入
  191. /// </summary>
  192. /// <param name="sender"></param>
  193. /// <param name="e"></param>
  194. protected virtual void txtPointsToRMB_Points_KeyPress(object sender, KeyPressEventArgs e)
  195. {
  196. //throw new NotImplementedException();
  197. }
  198. /// <summary>
  199. /// 积分换人民币_人民币限制输入
  200. /// </summary>
  201. /// <param name="sender"></param>
  202. /// <param name="e"></param>
  203. protected virtual void txtPointsToRMB_RMB_KeyPress(object sender, KeyPressEventArgs e)
  204. {
  205. //throw new NotImplementedException();
  206. }
  207. /// <summary>
  208. /// 转介绍_积分限制输入
  209. /// </summary>
  210. /// <param name="sender"></param>
  211. /// <param name="e"></param>
  212. protected virtual void txtReferral_Points_KeyPress(object sender, KeyPressEventArgs e)
  213. {
  214. //throw new NotImplementedException();
  215. }
  216. /// <summary>
  217. /// 转介绍_人民币限制输入
  218. /// </summary>
  219. /// <param name="sender"></param>
  220. /// <param name="e"></param>
  221. protected virtual void txtReferral_RMB_KeyPress(object sender, KeyPressEventArgs e)
  222. {
  223. //throw new NotImplementedException();
  224. }
  225. /// <summary>
  226. /// 结婚纪念日当天限制输入
  227. /// </summary>
  228. /// <param name="sender"></param>
  229. /// <param name="e"></param>
  230. protected virtual void txtWeddingAnniversary_Day_KeyPress(object sender, KeyPressEventArgs e)
  231. {
  232. //throw new NotImplementedException();
  233. }
  234. /// <summary>
  235. /// 结婚纪念日当月限制输入
  236. /// </summary>
  237. /// <param name="sender"></param>
  238. /// <param name="e"></param>
  239. protected virtual void txtWeddingAnniversary_Month_KeyPress(object sender, KeyPressEventArgs e)
  240. {
  241. //throw new NotImplementedException();
  242. }
  243. }
  244. }