RhSolutions-AddIn/src/AddIn/EventsUtil.cs

34 lines
981 B
C#
Raw Normal View History

2022-02-05 12:59:16 +03:00
using Microsoft.Office.Interop.Excel;
namespace RehauSku
{
internal static class EventsUtil
{
2022-02-12 16:53:34 +03:00
private static readonly Application Excel = AddIn.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)
{
Interface.RibbonController.RefreshControl("convertPrice");
}
private static void RefreshExportButton(object sh, Range target)
{
Interface.RibbonController.RefreshControl("exportToPrice");
}
}
}