FrmSelectPreCategory.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 FrmSelectPreCategory : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public FrmSelectPreCategory()
  14. {
  15. InitializeComponent();
  16. this.Load += FrmSelectPreCategory_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 FrmSelectPreCategory_Load(object sender, EventArgs e)
  34. {
  35. //Your wordthrow new NotImplementedException();
  36. }
  37. }
  38. }