Statistics
| Branch: | Revision:

root / trunk / NotifyIconWpf / Interop / IconState.cs @ 9bae55d1

History | View | Annotate | Download (482 Bytes)

1
namespace Hardcodet.Wpf.TaskbarNotification.Interop
2
{
3
  /// <summary>
4
  /// The state of the icon - can be set to
5
  /// hide the icon.
6
  /// </summary>
7
  public enum IconState
8
  {
9
    /// <summary>
10
    /// The icon is visible.
11
    /// </summary>
12
    Visible = 0x00,
13
    /// <summary>
14
    /// Hide the icon.
15
    /// </summary>
16
    Hidden = 0x01,
17

    
18
    /// <summary>
19
    /// The icon is shared - currently not supported, thus commented out.
20
    /// </summary>
21
    //Shared = 0x02
22
  }
23
}