PhotographerConditionQuerySmallForm.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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 PhotographerConditionQuerySmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public PhotographerConditionQuerySmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. this.panelEx2.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  21. this.Load += PhotographerConditionQuerySmallForm_Load;
  22. this.btnOK.Click += btnOK_Click;
  23. this.btnCancel.Click += btnCancel_Click;
  24. this.chkPoints.Click += chkPoints_Click;
  25. this.chkDate.Click += chkDate_Click;
  26. this.checkBoxEx1.Click += chkBack_Click;
  27. this.txtPointsStart.KeyPress += txtPointsStart_KeyPress;
  28. this.txtPointsEnd.KeyPress += txtPointsEnd_KeyPress;
  29. }
  30. /// <summary>
  31. /// 窗体加载事件
  32. /// </summary>
  33. /// <param name="sender"></param>
  34. /// <param name="e"></param>
  35. protected virtual void PhotographerConditionQuerySmallForm_Load(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. /// <summary>
  40. /// 确定
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. protected virtual void btnOK_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. /// <summary>
  49. /// 取消
  50. /// </summary>
  51. /// <param name="sender"></param>
  52. /// <param name="e"></param>
  53. protected virtual void btnCancel_Click(object sender, EventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. /// <summary>
  58. /// 积分段
  59. /// </summary>
  60. /// <param name="sender"></param>
  61. /// <param name="e"></param>
  62. protected virtual void chkPoints_Click(object sender, EventArgs e)
  63. {
  64. //throw new NotImplementedException();
  65. }
  66. /// <summary>
  67. /// 时间段
  68. /// </summary>
  69. /// <param name="sender"></param>
  70. /// <param name="e"></param>
  71. protected virtual void chkDate_Click(object sender, EventArgs e)
  72. {
  73. //throw new NotImplementedException();
  74. }
  75. /// <summary>
  76. /// 返还时间段
  77. /// </summary>
  78. /// <param name="sender"></param>
  79. /// <param name="e"></param>
  80. protected virtual void chkBack_Click(object sender, EventArgs e)
  81. {
  82. //throw new NotImplementedException();
  83. }
  84. /// <summary>
  85. /// 开始积分输入限制
  86. /// </summary>
  87. /// <param name="sender"></param>
  88. /// <param name="e"></param>
  89. protected virtual void txtPointsStart_KeyPress(object sender, KeyPressEventArgs e)
  90. {
  91. //throw new NotImplementedException();
  92. }
  93. /// <summary>
  94. /// 结束积分输入限制
  95. /// </summary>
  96. /// <param name="sender"></param>
  97. /// <param name="e"></param>
  98. protected virtual void txtPointsEnd_KeyPress(object sender, KeyPressEventArgs e)
  99. {
  100. //throw new NotImplementedException();
  101. }
  102. }
  103. }