public ChangeAccountModule() { InitializeComponent(); DataContext = this; accController = new Controller.AccountController(); IdentifyCode = Md5Sha1Encrypt.MD5Hashing(DateTime.Now.ToString()); fadeAnimate = new Animation.FadeAnimate(TimeSpan.FromSeconds(3)); this.BeginAnimation(UserControl.OpacityProperty, fadeAnimate.FadeIn()); }
public static void InitData() { if (!File.Exists(CommonConstant.REMOTE_LOCKER_DATA)) { PlainTextData.SaveTo( CommonConstant.REMOTE_LOCKER_DATA, ';', "admin", "admin", Md5Sha1Encrypt.MD5Hashing("RemoteLocker.Default.IdentifyCode") ); } }
private void bGenerateCode_Click(object sender, RoutedEventArgs e) { IdentifyCode = Md5Sha1Encrypt.MD5Hashing(DateTime.Now.ToString()); }