using Custom.Utils.Framework; using DevExpress.XtraEditors; using System; using System.Windows.Forms; namespace CompressorXN { public partial class FrmShowPwd : XtraForm { public FrmShowPwd(string pwd) { InitializeComponent(); lbl_UserPwd.Text = DesHelper.DecryptStringFromBytes_Aes(pwd); } private void btn_Confirm_Click(object sender, EventArgs e) { DialogResult = DialogResult.OK; } } }