1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| using Yw.WinFrmUI;
|
| namespace HStation.WinFrmUI.Organize.Core._06_MyCenter
| {
| public partial class MyCenterMgrMainPanel : DocumentPage
| {
| public MyCenterMgrMainPanel()
| {
| InitializeComponent();
| }
|
| //重置密码
| private void BasicInterfation_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
| {
|
| }
| //修改密码
| private void PasswordEdit_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
| {
| var dig = new ChagePasswordDlg();
| dig.ShowDialog();
| }
| }
| }
|
|