Esempio n. 1
0
        private void customPasswordLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Cursor = Cursors.WaitCursor;
            Form_PasswordList listDisplay = new Form_PasswordList("Custom Password List", passwordSettings.CustomPasswordList);

            this.Cursor = Cursors.Default;
            listDisplay.ShowDialog(this);
        }
Esempio n. 2
0
        private void viewPasswordsLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Cursor = Cursors.WaitCursor;
            Form_PasswordList listDisplay = new Form_PasswordList("Default Password List", LoadDefaultPasswordList());

            this.Cursor = Cursors.Default;
            listDisplay.ShowDialog(this);
        }