WPF NotifyIcon

--------------
CHG   Remove PlacementTarget assignment for popups and others. Did not provide advantages, but hid popups if taskbar owner isn't visible.
ADD   Added double click command declaration.

git-svn-id: https://svn.evolvesoftware.ch/repos/evolve.net/WPF/NotifyIcon@83 9f600761-6f11-4665-b6dc-0185e9171623
This commit is contained in:
Philipp Sumi
2009-04-26 17:14:39 +00:00
parent dc0a2167fe
commit d792f1c5a4
5 changed files with 212 additions and 14 deletions

View File

@@ -12,6 +12,13 @@ namespace Sample_Project
public Window1()
{
InitializeComponent();
Loaded += delegate
{
//show balloon at startup, pointing to the icon
showBalloonTip_Click(null, null);
};
}