PhotographerOpenCardAoumntSetSuperSmallForm.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 PhotographerOpenCardAoumntSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public PhotographerOpenCardAoumntSetSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx2.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. this.Load += PhotographerOpenCardAoumntSetSuperSmallForm_Load;
  22. this.btnSave.Click += btnSave_Click;
  23. this.btnCancel.Click += btnCancel_Click;
  24. this.cmbMemberLevel.SelectedIndexChanged += cmbMemberLevel_SelectedIndexChanged;
  25. this.txtOpenCardAmount.KeyPress += txtOpenCardAmount_KeyPress;
  26. this.txtPoints.KeyPress += txtPoints_KeyPress;
  27. this.txtRefundAmount.KeyPress += txtRefundAmount_KeyPress;
  28. }
  29. /// <summary>
  30. /// 窗体加载事件
  31. /// </summary>
  32. /// <param name="sender"></param>
  33. /// <param name="e"></param>
  34. protected virtual void PhotographerOpenCardAoumntSetSuperSmallForm_Load(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. /// <summary>
  39. /// 保存
  40. /// </summary>
  41. /// <param name="sender"></param>
  42. /// <param name="e"></param>
  43. protected virtual void btnSave_Click(object sender, EventArgs e)
  44. {
  45. //throw new NotImplementedException();
  46. }
  47. /// <summary>
  48. /// 取消
  49. /// </summary>
  50. /// <param name="sender"></param>
  51. /// <param name="e"></param>
  52. protected virtual void btnCancel_Click(object sender, EventArgs e)
  53. {
  54. //throw new NotImplementedException();
  55. }
  56. /// <summary>
  57. /// 等级选择事件
  58. /// </summary>
  59. /// <param name="sender"></param>
  60. /// <param name="e"></param>
  61. protected virtual void cmbMemberLevel_SelectedIndexChanged(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 txtOpenCardAmount_KeyPress(object sender, KeyPressEventArgs 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 txtPoints_KeyPress(object sender, KeyPressEventArgs 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 txtRefundAmount_KeyPress(object sender, KeyPressEventArgs e)
  89. {
  90. //throw new NotImplementedException();
  91. }
  92. }
  93. }