123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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.SystemSettings
- {
- public partial class FrmChangePassword : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmChangePassword()
- {
- InitializeComponent();
- this.btnSave.Click += btnSave_Click;
- this.BtnClose.Click += BtnClose_Click;
- this.Load += FrmChangePassword_Load;
- panelEx1.BorderStyle = BorderStyle.FixedSingle;
- panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
-
- }
- protected virtual void FrmChangePassword_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void BtnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|