mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 21:23:48 +00:00
33 lines
729 B
C#
33 lines
729 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
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
|
|
}
|
|
} |