RhSolutions-AddIn/src/Interface/Dialog.cs

63 lines
1.7 KiB
C#
Raw Normal View History

2022-01-09 15:47:54 +03:00
using Microsoft.Office.Interop.Excel;
using System.Collections.Generic;
2021-12-24 16:22:03 +03:00
using System.Windows.Forms;
2022-02-02 09:46:47 +03:00
namespace RehauSku.Interface
2021-12-24 16:22:03 +03:00
{
static class Dialog
{
public static string GetFilePath()
{
using (OpenFileDialog dialog = new OpenFileDialog())
{
2021-12-24 17:42:20 +03:00
dialog.Filter = "Файлы Excel (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm";
2021-12-24 16:22:03 +03:00
if (dialog.ShowDialog() == DialogResult.OK)
{
2022-02-02 18:26:04 +03:00
return dialog.FileName;
2021-12-24 16:22:03 +03:00
}
}
2022-02-02 18:26:04 +03:00
return string.Empty;
2021-12-24 16:22:03 +03:00
}
public static string[] GetMultiplyFiles()
{
using (OpenFileDialog dialog = new OpenFileDialog())
{
2021-12-24 17:42:20 +03:00
dialog.Filter = "Файлы Excel (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm";
2021-12-24 16:22:03 +03:00
dialog.Multiselect = true;
if (dialog.ShowDialog() == DialogResult.OK)
{
2022-02-02 18:26:04 +03:00
return dialog.FileNames;
2021-12-24 16:22:03 +03:00
}
2022-02-02 18:26:04 +03:00
else return null;
}
2021-12-24 16:22:03 +03:00
}
2022-01-09 15:47:54 +03:00
public static void SaveWorkbookAs()
{
Workbook workbook = AddIn.Excel.ActiveWorkbook;
2022-01-09 15:47:54 +03:00
using (SaveFileDialog dialog = new SaveFileDialog())
{
dialog.FileName = workbook.Name;
dialog.Filter = "Файлы Excel (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm";
if (dialog.ShowDialog() == DialogResult.Cancel)
{
workbook.Close(false);
}
2022-01-09 15:47:54 +03:00
2022-02-02 18:13:03 +03:00
else
{
string fileName = dialog.FileName;
workbook.SaveAs(fileName);
}
}
2022-01-09 15:47:54 +03:00
}
2021-12-24 16:22:03 +03:00
}
}