duheng
2024-12-19 3af811d30c93995e2500bdd2f3795be77cc1a519
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using DevExpress.XtraEditors;
using DevExpress.XtraLayout;
using HStation.WinFrmUI.Organize.Core._00_UserControl;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
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();
        }
    }
}