FrmEarlySecondPin.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 FrmEarlySecondPin : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmEarlySecondPin()
  15. {
  16. InitializeComponent();
  17. //panelEx1.BorderStyle = BorderStyle.FixedSingle;
  18. //panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. //panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. //panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor;
  21. //panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
  22. this.Shown += FrmEarlySecondPin_Shown;
  23. this.btnSave.Click += btnSave_Click;
  24. }
  25. protected virtual void btnSave_Click(object sender, EventArgs e)
  26. {
  27. //throw new NotImplementedException();
  28. }
  29. protected virtual void FrmEarlySecondPin_Shown(object sender, EventArgs e)
  30. {
  31. //throw new NotImplementedException();
  32. }
  33. }
  34. }