OpenTween.HookGlobalHotkey.HookGlobalHotkey C# (CSharp) Method

HookGlobalHotkey() public method

public HookGlobalHotkey ( Form targetForm ) : System
targetForm System.Windows.Forms.Form
return System
        public HookGlobalHotkey(Form targetForm)
        {
            _targetForm = targetForm;
            _hotkeyID = new Dictionary<int, KeyEventValue>();

               _targetForm.HandleCreated += this.OnHandleCreated;
               _targetForm.HandleDestroyed += this.OnHandleDestroyed;
        }