mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-25 09:45:36 -05:00
WPF NotifyIcon
-------------- Initial import git-svn-id: https://svn.evolvesoftware.ch/repos/evolve.net/WPF/NotifyIcon@52 9f600761-6f11-4665-b6dc-0185e9171623
This commit is contained in:
23
Source/NotifyIconWpf/Interop/IconState.cs
Normal file
23
Source/NotifyIconWpf/Interop/IconState.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace Hardcodet.Wpf.TaskbarNotification.Interop
|
||||
{
|
||||
/// <summary>
|
||||
/// The state of the icon - can be set to
|
||||
/// hide the icon.
|
||||
/// </summary>
|
||||
public enum IconState
|
||||
{
|
||||
/// <summary>
|
||||
/// The icon is visible.
|
||||
/// </summary>
|
||||
Visible = 0x00,
|
||||
/// <summary>
|
||||
/// Hide the icon.
|
||||
/// </summary>
|
||||
Hidden = 0x01,
|
||||
|
||||
/// <summary>
|
||||
/// The icon is shared - currently not supported, thus commented out.
|
||||
/// </summary>
|
||||
//Shared = 0x02
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user