FrmWageSet.cs 3.0 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.InitialSet
  11. {
  12. public partial class FrmWageSet : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmWageSet()
  15. {
  16. InitializeComponent();
  17. // this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
  18. // this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. // this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.dgv.RefreshTheme();
  21. this.IsCustomScrollBar = true;
  22. this.Load += FrmWageSet_Load;
  23. // this.btnEarlyPrograms.Click += btnEarlyPrograms_Click;
  24. //this.btnPieceStyle.Click += btnPieceStyle_Click;
  25. this.btnSaveWages.Click += btnSaveWages_Click;
  26. this.dgv.Click += dgv_Click;
  27. this.txtWs_BasicWage.KeyPress += txtWs_BasicWage_KeyPress;
  28. this.btnClose.Click += btnClose_Click;
  29. this.Shown += FrmWageSet_Shown;
  30. // this.btnEarlySecondPin.Click += btnEarlySecondPin_Click;
  31. }
  32. protected virtual void btnEarlySecondPin_Click(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. protected virtual void FrmWageSet_Shown(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void btnClose_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void txtWs_BasicWage_KeyPress(object sender, KeyPressEventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void btnRefresh_Click(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. protected virtual void dgv_Click(object sender, EventArgs e)
  53. {
  54. //throw new NotImplementedException();
  55. }
  56. protected virtual void btnSaveWages_Click(object sender, EventArgs e)
  57. {
  58. //throw new NotImplementedException();
  59. }
  60. protected virtual void btnPieceStyle_Click(object sender, EventArgs e)
  61. {
  62. //throw new NotImplementedException();
  63. }
  64. protected virtual void btnLateProgram_Click(object sender, EventArgs e)
  65. {
  66. // throw new NotImplementedException();
  67. }
  68. protected virtual void btnEarlyPrograms_Click(object sender, EventArgs e)
  69. {
  70. //throw new NotImplementedException();
  71. }
  72. protected virtual void btnSaveXP_Click(object sender, EventArgs e)
  73. {
  74. //throw new NotImplementedException();
  75. }
  76. protected virtual void FrmWageSet_Load(object sender, EventArgs e)
  77. {
  78. //throw new NotImplementedException();
  79. }
  80. }
  81. }