Files
Electron.NET/ElectronNET.API/Entities/HighlightMode.cs

33 lines
729 B
C#
Raw Normal View History

2017-10-18 05:30:36 +02:00
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
2017-10-18 05:30:36 +02:00
public enum HighlightMode
{
/// <summary>
/// Highlight the tray icon when it is clicked and also when its context menu is open. This is the default.
/// </summary>
selection,
/// <summary>
/// Always highlight the tray icon.
/// </summary>
always,
/// <summary>
/// Never highlight the tray icon.
/// </summary>
never,
/// <summary>
/// Activate highlight the tray icon.
/// </summary>
on,
/// <summary>
/// Deactivate highlight the tray icon.
/// </summary>
off
2017-10-18 05:30:36 +02:00
}
}