public NotificationForm(Keys hotkey) { NativeMethods.SetParent(Handle, NativeMethods.HWND_MESSAGE); NativeMethods.AddClipboardFormatListener(Handle); NativeHotkey.RegisterHotKey(this, hotkey); }
protected override void OnFormClosed(FormClosedEventArgs e) { NativeHotkey.UnregisterHotKey(this); base.OnFormClosed(e); }