示例#1
0
文件: PicofDay.cs 项目: BillCacy/NPOD
        private void updateMenuItem_Click(object sender, EventArgs e)
        {
            if (GlobalVariables.LoggingEnabled) ExceptionManager.WriteInformation("Update has been requested.");
            var processHelper = new ProcessHelper();
            processHelper.BackgroundLoading(TestInternetConnection);
            processHelper.Start();

            if (GlobalVariables.LoggingEnabled) ExceptionManager.WriteInformation("Checking internet connectivity");
            if (!_internetAvailable)
            {
                MessageBox.Show(Resources.InternetRequiredMessage, Resources.InternetRequiredTitle, MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }

            UpdateContent();
        }
示例#2
0
文件: PicofDay.cs 项目: BillCacy/NPOD
        private void imagesMenuItem_Click(object sender, EventArgs e)
        {
            if (GlobalVariables.LoggingEnabled) ExceptionManager.WriteInformation("Images option selected.");
            var processHelper = new ProcessHelper();
            processHelper.BackgroundLoading(TestInternetConnection);
            processHelper.Start();

            if (GlobalVariables.LoggingEnabled) ExceptionManager.WriteInformation("Checking internet connectivity");
            //Present the message that an internet connection is required
            if (!_internetAvailable)
            {
                MessageBox.Show(Resources.InternetRequiredMessage, Resources.InternetRequiredTitle, MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }

            var imagesForm = new ImagesForm();
            imagesForm.ShowDialog();
            UpdateControlContent();
        }