public EntryForm() { InitializeComponent(); panel2.BackColor = Settings.ColorAccent; this.Opacity = 0; Animation.FadeIn(this); }
public ShowPasswordForm() { InitializeComponent(); panel1.BackColor = Settings.ColorAccent; this.Opacity = 0; Animation.FadeIn(this); }
private void LoadPasswords() { var tempList = ArchiveManager.LoadEntries(); Invoke((MethodInvoker) delegate { materialListView1.BeginUpdate(); if (tempList != null) { foreach (EntryData pass in tempList) { AddEntry(pass); } } materialListView1.EndUpdate(); UpdateNameList(); Animation.FadeIn(this); }); SearchMan = new Engine.Search.SearchManager(ref EntryList); }
private void CheckPasswordForm_Shown(object sender, EventArgs e) => Animation.FadeIn(this);
private void CMessageBox_Shown(object sender, EventArgs e) => Animation.FadeIn(this, 10);