mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-14 01:25:45 -05:00
28 lines
760 B
C#
28 lines
760 B
C#
using System.Windows;
|
|
using Hardcodet.Wpf.TaskbarNotification;
|
|
|
|
namespace Windowless_Sample
|
|
{
|
|
/// <summary>
|
|
/// Simple application. Check the XAML for comments.
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
private TaskbarIcon notifyIcon;
|
|
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
base.OnStartup(e);
|
|
|
|
//create the notifyicon (it's a resource declared in NotifyIconResources.xaml
|
|
notifyIcon = (TaskbarIcon) FindResource("NotifyIcon");
|
|
}
|
|
|
|
protected override void OnExit(ExitEventArgs e)
|
|
{
|
|
notifyIcon.Dispose(); //the icon would clean up automatically, but this is cleaner
|
|
base.OnExit(e);
|
|
}
|
|
}
|
|
}
|