示例#1
0
        private async void btnBegin_Click(object sender, RoutedEventArgs e)
        {
            string file = thisModel.OpenedFile;

            if (string.IsNullOrEmpty(file))
            {
                DialogsProvider.ShowErrorMessage("Файл не открыт", "Ошибка");
                return;
            }
            if (!System.IO.File.Exists(file))
            {
                DialogsProvider.ShowErrorMessage($"Файл не найден: {file}", "Ошибка");
                return;
            }

            UpdateProgress(0);
            var progress = new Progress <int>(UpdateProgress);

            try
            {
                btnBegin.IsEnabled = false;
                _ = await Downloader.ReadAndWrite(thisModel, progress);
            }
            catch (Exception ex)
            {
                DialogsProvider.ShowException(ex, "Error");
            }
            finally {
                UpdateProgress(0);
                btnBegin.IsEnabled = true;
            }
        }
示例#2
0
        private async void btnOpenFile_Click(object sender, RoutedEventArgs e)
        {
            string file = DialogsProvider.OpenExcelFile();

            if (!string.IsNullOrEmpty(file))
            {
                try
                {
                    int finishRow = await Downloader.GetLastRow(file);

                    thisModel.RowFinish = finishRow;
                }
                catch (Exception ex)
                {
                    DialogsProvider.ShowException(ex, "Ошибка чтения файла");
                }
            }
            else
            {
                thisModel.RowFinish = 0;
            }

            thisModel.OpenedFile = file;
        }