mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-24 01:35:39 -05:00
WPF NotifyIcon
-------------- FIX Fixed typo (balloon with one "o") in comments and an even in WindowMessageSink.cs. git-svn-id: https://svn.evolvesoftware.ch/repos/evolve.net/WPF/NotifyIcon@120 9f600761-6f11-4665-b6dc-0185e9171623
This commit is contained in:
@@ -101,7 +101,7 @@ namespace Hardcodet.Wpf.TaskbarNotification.Interop
|
||||
/// Fired if a balloon ToolTip was either displayed
|
||||
/// or closed (indicated by the boolean flag).
|
||||
/// </summary>
|
||||
public event Action<bool> BallonToolTipChanged;
|
||||
public event Action<bool> BalloonToolTipChanged;
|
||||
|
||||
/// <summary>
|
||||
/// Fired if the taskbar was created or restarted. Requires the taskbar
|
||||
@@ -278,12 +278,12 @@ namespace Hardcodet.Wpf.TaskbarNotification.Interop
|
||||
break;
|
||||
|
||||
case 0x402:
|
||||
BallonToolTipChanged(true);
|
||||
BalloonToolTipChanged(true);
|
||||
break;
|
||||
|
||||
case 0x403:
|
||||
case 0x404:
|
||||
BallonToolTipChanged(false);
|
||||
BalloonToolTipChanged(false);
|
||||
break;
|
||||
|
||||
case 0x405:
|
||||
|
||||
Reference in New Issue
Block a user