TrayEvent
TrayEvent
is an enumeration (Enum) class that represents events related to the system tray icon. This class is mapped to QSystemTrayIcon.ActivationReason
.
Enumeration Members
DoubleClick
: Event that occurs when the tray icon is double-clickedMiddleClick
: Event that occurs when the tray icon is clicked with the middle buttonRightClick
: Event that occurs when the tray icon is clicked with the right button (context menu)LeftClick
: Event that occurs when the tray icon is clicked with the left buttonUnknown
: Unknown event
Usage Example
Last updated