FrmPersonalCenter.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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
  11. {
  12. public partial class FrmPersonalCenter : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmPersonalCenter()
  15. {
  16. InitializeComponent();
  17. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  18. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.Shown += FrmPersonalCenter_Shown;
  21. this.Load += FrmPersonalCenter_Load;
  22. }
  23. protected virtual void FrmPersonalCenter_Load(object sender, EventArgs e)
  24. {
  25. //throw new NotImplementedException();
  26. }
  27. protected virtual void FrmPersonalCenter_Shown(object sender, EventArgs e)
  28. {
  29. //throw new NotImplementedException();
  30. }
  31. }
  32. }