RhSolutions-AddIn/RhSolutions.AddIn/Services/EventsUtil.cs

36 lines
1.0 KiB
C#
Raw Normal View History

2022-02-05 12:59:16 +03:00
using Microsoft.Office.Interop.Excel;
2022-12-20 12:41:46 +03:00
using RhSolutions.AddIn;
2022-12-20 12:27:47 +03:00
using RhSolutions.Controllers;
2022-02-05 12:59:16 +03:00
2022-12-20 12:27:47 +03:00
namespace RhSolutions.Services
2022-02-05 12:59:16 +03:00
{
internal static class EventsUtil
{
2022-12-20 12:27:47 +03:00
private static readonly Application Excel = RhSolutionsAddIn.Excel;
2022-02-05 12:59:16 +03:00
public static void Initialize()
{
Excel.SheetSelectionChange += RefreshExportButton;
Excel.SheetActivate += RefreshConvertButton;
Excel.WorkbookActivate += RefreshConvertButton;
}
public static void Uninitialize()
{
Excel.SheetSelectionChange -= RefreshExportButton;
Excel.SheetActivate -= RefreshConvertButton;
Excel.WorkbookActivate -= RefreshConvertButton;
}
private static void RefreshConvertButton(object sh)
{
2022-12-20 12:27:47 +03:00
RibbonController.RefreshControl("convert");
2022-02-05 12:59:16 +03:00
}
private static void RefreshExportButton(object sh, Range target)
{
2022-12-20 12:27:47 +03:00
RibbonController.RefreshControl("export");
2022-02-05 12:59:16 +03:00
}
}
}