Files
wpf-notifyicon/Source/NotifyIconWpf/Interop/IconState.cs
Philipp Sumi 0b73872f2b ADD Added missing XML documentation.
NTFY-16


git-svn-id: https://svn.evolvesoftware.ch/repos/evolve.net/WPF/NotifyIcon@211 9f600761-6f11-4665-b6dc-0185e9171623
2013-11-23 16:59:05 +00:00

22 lines
520 B
C#

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,
// The icon is shared - currently not supported, thus commented out.
//Shared = 0x02
}
}