This class is the dialog to use to prompt the user to install MySQL for Visual Studio and other needed extensions.
상속: GoogleCloudExtension.Theming.CommonDialogWindowBase
예제 #1
0
        public MySQLInstallerViewModel(MySQLInstallerWindow owner)
        {
            _owner = owner;

            DownloadCommand = new WeakCommand(OpenDownload);
        }
예제 #2
0
        /// <summary>
        /// Shows the dialog to the user.
        /// </summary>
        public static void PromptUser()
        {
            var dialog = new MySQLInstallerWindow();

            dialog.ShowModal();
        }
        public MySQLInstallerViewModel(MySQLInstallerWindow owner)
        {
            _owner = owner;

            DownloadCommand = new ProtectedCommand(OpenDownload);
        }
 /// <summary>
 /// Shows the dialog to the user.
 /// </summary>
 public static void PromptUser()
 {
     var dialog = new MySQLInstallerWindow();
     dialog.ShowModal();
 }