ParticularDateSetSetSuperSmallForm.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 ParticularDateSetSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public ParticularDateSetSetSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx2.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  21. this.Load += ParticularDateSetSetSuperSmallForm_Load;
  22. this.btnOK.Click += btnOK_Click;
  23. this.btnCancel.Click += btnCancel_Click;
  24. this.txtValue.KeyPress += txtValue_KeyPress;
  25. }
  26. /// <summary>
  27. /// 窗体加载事件
  28. /// </summary>
  29. /// <param name="sender"></param>
  30. /// <param name="e"></param>
  31. protected virtual void ParticularDateSetSetSuperSmallForm_Load(object sender, EventArgs e)
  32. {
  33. //throw new NotImplementedException();
  34. }
  35. /// <summary>
  36. /// 确定
  37. /// </summary>
  38. /// <param name="sender"></param>
  39. /// <param name="e"></param>
  40. protected virtual void btnOK_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. /// <summary>
  45. /// 取消
  46. /// </summary>
  47. /// <param name="sender"></param>
  48. /// <param name="e"></param>
  49. protected virtual void btnCancel_Click(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. /// <summary>
  54. /// 积分倍数输入限制
  55. /// </summary>
  56. /// <param name="sender"></param>
  57. /// <param name="e"></param>
  58. protected virtual void txtValue_KeyPress(object sender, KeyPressEventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. }
  63. }