You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
492 B
C#
23 lines
492 B
C#
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;
|
|
}
|
|
}
|
|
}
|