Esempio n. 1
0
        private void MenuItem_AdminEdit_Click(object sender, RoutedEventArgs e)
        {
            var winVerification = new winIdentityVerification();

            if (winVerification.ShowDialog() == true)
            {
                var win = new AccountEdit();
                win.ShowDialog();
            }
        }
Esempio n. 2
0
        private void MenuItem_GroupListConfig_Click(object sender, RoutedEventArgs e)
        {
            var winVerification = new winIdentityVerification();

            if (winVerification.ShowDialog() == true)
            {
                var win = new winGroupList();
                win.ShowDialog();
            }
        }