aboutsummaryrefslogtreecommitdiff
path: root/src/AddIn/EventsUtil.cs
blob: c10a69a0b356be0a1477d28fbb2590e4eb82a171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using Microsoft.Office.Interop.Excel;

namespace RehauSku
{
    internal static class EventsUtil
    {
        private static readonly 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("convert");
        }

        private static void RefreshExportButton(object sh, Range target)
        {
            Interface.RibbonController.RefreshControl("export");
        }
    }
}