PointsRuleMultipleTestSuperSmallForm.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 PointsRuleMultipleTestSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public PointsRuleMultipleTestSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. this.Load += PointsRuleMultipleTestSuperSmallForm_Load;
  21. this.btnCompute.Click += btnCompute_Click;
  22. this.btnClose.Click += btnClose_Click;
  23. this.cmbtreevDate.ComboBoxTree_NodeMouseClick += cmbtreevDate_ComboBoxTree_NodeMouseClick;
  24. this.txtAoumnt.KeyPress += txtAoumnt_KeyPress;
  25. }
  26. /// <summary>
  27. /// 窗体加载事件
  28. /// </summary>
  29. /// <param name="sender"></param>
  30. /// <param name="e"></param>
  31. protected virtual void PointsRuleMultipleTestSuperSmallForm_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 btnCompute_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 btnClose_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 cmbtreevDate_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. /// <summary>
  63. /// 输入限制
  64. /// </summary>
  65. /// <param name="sender"></param>
  66. /// <param name="e"></param>
  67. protected virtual void txtAoumnt_KeyPress(object sender, KeyPressEventArgs e)
  68. {
  69. //throw new NotImplementedException();
  70. }
  71. }
  72. }