// Извлекает картинки из презентации private async void сохранитьВJPGToolStripMenuItem1_Click(object sender, EventArgs e) { if (isOpenFolder() && isOpenFile(FormatsFile.PPTX)) { await Task.Run(() => PowerPointWork.SavePresentationAsIMGs(dirPath, pptxPath)); } }
// Загружает и выводит на экран презентацию private async void открытьToolStripMenuItem_Click(object sender, EventArgs e) { try { if (isOpenFile(FormatsFile.PPTX)) { await Task.Run(() => PowerPointWork.OpenPPTXPresentation(pptxPath)); } else { return; } } catch (Exception ex) { MessageBox.Show(ex.Message); } }