Exemple #1
0
        private void OpenDownload()
        {
            var url = $"https://dev.mysql.com/downloads/installer/";

            Debug.WriteLine($"Opening page to download MySQL Installer: {url}");
            Process.Start(url);
            _owner.Close();
        }
Exemple #2
0
        private void OpenDownload()
        {
            ExtensionAnalytics.ReportCommand(CommandName.OpenMySQLInstallerDownload, CommandInvocationSource.Button);

            var url = $"https://dev.mysql.com/downloads/installer/";

            Debug.WriteLine($"Opening page to download MySQL Installer: {url}");
            Process.Start(url);
            _owner.Close();
        }