IconState.cs 499 B

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