using LYFZ.ComponentLibrary; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.UI.InitialSet { public partial class FrmPersonalCenter : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmPersonalCenter() { InitializeComponent(); panelEx1.BorderStyle = BorderStyle.FixedSingle; panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.Shown += FrmPersonalCenter_Shown; this.Load += FrmPersonalCenter_Load; } protected virtual void FrmPersonalCenter_Load(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void FrmPersonalCenter_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } } }