diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-05 12:59:16 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-05 12:59:16 +0300 |
commit | 880b95f8625830e85b9eac816a4cd672d850297b (patch) | |
tree | 14a82a481614deee837b5a9460a1c454ebc8a1e8 /src/AddIn/EventsUtil.cs | |
parent | cc96e1ebe7255c7278c70cef0f951103e9844487 (diff) |
Create EventsUtil
Diffstat (limited to 'src/AddIn/EventsUtil.cs')
-rw-r--r-- | src/AddIn/EventsUtil.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/AddIn/EventsUtil.cs b/src/AddIn/EventsUtil.cs new file mode 100644 index 0000000..102e12e --- /dev/null +++ b/src/AddIn/EventsUtil.cs @@ -0,0 +1,33 @@ +using Microsoft.Office.Interop.Excel; + +namespace RehauSku +{ + internal static class EventsUtil + { + private static Application Excel = AddIn.Excel; + + 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"); + } + } +} |