FrmChangePassword.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.SystemSettings
  11. {
  12. public partial class FrmChangePassword : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmChangePassword()
  15. {
  16. InitializeComponent();
  17. this.btnSave.Click += btnSave_Click;
  18. this.BtnClose.Click += BtnClose_Click;
  19. this.Load += FrmChangePassword_Load;
  20. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  21. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  22. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  23. }
  24. protected virtual void FrmChangePassword_Load(object sender, EventArgs e)
  25. {
  26. //throw new NotImplementedException();
  27. }
  28. protected virtual void BtnClose_Click(object sender, EventArgs e)
  29. {
  30. //throw new NotImplementedException();
  31. }
  32. protected virtual void btnSave_Click(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. }
  37. }