Work in progress on interactive tooltips as well as tooltip/popup unification. This is currently a bit of a mess...

This commit is contained in:
Philipp Sumi
2016-01-01 19:54:52 +01:00
parent d26ca4483f
commit 95414fa18d
8 changed files with 755 additions and 58 deletions

View File

@@ -25,7 +25,6 @@
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace Hardcodet.Wpf.TaskbarNotification.Interop
{
@@ -290,10 +289,12 @@ namespace Hardcodet.Wpf.TaskbarNotification.Interop
MouseEventReceived(MouseEvent.BalloonToolTipClicked);
break;
//show ToolTip
case 0x406:
ChangeToolTipStateRequest(true);
break;
//hide ToolTip
case 0x407:
ChangeToolTipStateRequest(false);
break;