FrmPhaseCommissionScheme.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.InitialSet.WageSet
  11. {
  12. public partial class FrmPhaseCommissionScheme : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmPhaseCommissionScheme()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. this.Load += FrmPhaseCommissionScheme_Load;
  19. this.btnAdd.Click += btnAdd_Click;
  20. this.txtWcs_PerformanceBeginValue.KeyPress += txtWcs_PerformanceBeginValue_KeyPress;
  21. this.txtWcs_PerformanceEndValue.KeyPress += txtWcs_PerformanceEndValue_KeyPress;
  22. this.txtWcs_Percentage.KeyPress += txtWcs_Percentage_KeyPress;
  23. this.btnDelete.Click += btnDelete_Click;
  24. this.chkWcs_PerformanceHight.Click += chkWcs_PerformanceHight_Click;
  25. this.btnResults.Click += btnResults_Click;
  26. this.txtValue.KeyPress += txtValue_KeyPress;
  27. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  28. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  29. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  30. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  31. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  32. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  33. panelEx3.BorderStyle = BorderStyle.FixedSingle;
  34. panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
  35. panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  36. panelEx4.BorderStyle = BorderStyle.FixedSingle;
  37. panelEx4.BorderColor = UIBlueThemeResources.BorderAreaColor;
  38. panelEx4.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  39. }
  40. protected virtual void txtValue_KeyPress(object sender, KeyPressEventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void btnResults_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void chkWcs_PerformanceHight_Click(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. protected virtual void btnDelete_Click(object sender, EventArgs e)
  53. {
  54. //throw new NotImplementedException();
  55. }
  56. protected virtual void txtWcs_Percentage_KeyPress(object sender, KeyPressEventArgs e)
  57. {
  58. //throw new NotImplementedException();
  59. }
  60. protected virtual void txtWcs_PerformanceEndValue_KeyPress(object sender, KeyPressEventArgs e)
  61. {
  62. //throw new NotImplementedException();
  63. }
  64. protected virtual void txtWcs_PerformanceBeginValue_KeyPress(object sender, KeyPressEventArgs e)
  65. {
  66. //throw new NotImplementedException();
  67. }
  68. protected virtual void btnAdd_Click(object sender, EventArgs e)
  69. {
  70. //throw new NotImplementedException();
  71. }
  72. protected virtual void FrmPhaseCommissionScheme_Load(object sender, EventArgs e)
  73. {
  74. //throw new NotImplementedException();
  75. }
  76. }
  77. }