Example #1
0
 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);
        }
Example #3
0
        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);
        }
Example #4
0
 private void CheckPasswordForm_Shown(object sender, EventArgs e)
 => Animation.FadeIn(this);
Example #5
0
 private void CMessageBox_Shown(object sender, EventArgs e) => Animation.FadeIn(this, 10);