FrmSelectLateCategory.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI.InitialSet.WageSet
  10. {
  11. public partial class FrmSelectLateCategory : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public FrmSelectLateCategory()
  14. {
  15. InitializeComponent();
  16. this.Load += FrmSelectLateCategory_Load;
  17. this.btnSet.Click += btnSet_Click;
  18. this.btnOk.Click += btnOk_Click;
  19. this.btnClose.Click += btnClose_Click;
  20. }
  21. protected virtual void btnClose_Click(object sender, EventArgs e)
  22. {
  23. //throw new NotImplementedException();
  24. }
  25. protected virtual void btnOk_Click(object sender, EventArgs e)
  26. {
  27. //throw new NotImplementedException();
  28. }
  29. protected virtual void btnSet_Click(object sender, EventArgs e)
  30. {
  31. //throw new NotImplementedException();
  32. }
  33. protected virtual void FrmSelectLateCategory_Load(object sender, EventArgs e)
  34. {
  35. //throw new NotImplementedException();
  36. }
  37. }
  38. }