This class represents the dialog that will show the user the Windows credentials obtained after a password reset.
Наследование: GoogleCloudExtension.Theming.CommonDialogWindowBase
 /// <summary>
 /// Shows the given credentials to the user.
 /// </summary>
 public static void PromptUser(Options options)
 {
     var dialog = new ShowPasswordWindow(options);
     dialog.ShowModal();
 }
Пример #2
0
        /// <summary>
        /// Shows the given credentials to the user.
        /// </summary>
        public static void PromptUser(Options options)
        {
            var dialog = new ShowPasswordWindow(options);

            dialog.ShowModal();
        }
        public ShowPasswordViewModel(ShowPasswordWindow.Options options)
        {
            _options = options;

            CopyCommand = new ProtectedCommand(OnCopyCommand);
        }