mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 13:44:57 +00:00
20 lines
472 B
C#
20 lines
472 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
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
|
|
}
|
|
} |