FrmPieceStyleCommissionScheme.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 FrmPieceStyleCommissionScheme : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmPieceStyleCommissionScheme()
  15. {
  16. InitializeComponent();
  17. this.Load += FrmPieceStyleCommissionScheme_Load;
  18. this.btnOk.Click += btnOk_Click;
  19. this.btnSet.Click += btnSet_Click;
  20. this.btnClose.Click += btnClose_Click;
  21. this.txtWcs_Percentage.KeyPress += txtWcs_Percentage_KeyPress;
  22. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  23. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  24. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  25. }
  26. protected virtual void txtWcs_Percentage_KeyPress(object sender, KeyPressEventArgs e)
  27. {
  28. //throw new NotImplementedException();
  29. }
  30. protected virtual void btnClose_Click(object sender, EventArgs e)
  31. {
  32. //throw new NotImplementedException();
  33. }
  34. protected virtual void btnSet_Click(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void btnOk_Click(object sender, EventArgs e)
  39. {
  40. //throw new NotImplementedException();
  41. }
  42. protected virtual void FrmPieceStyleCommissionScheme_Load(object sender, EventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. }
  47. }