mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-12 11:47:52 +00:00
implement full Tray-API
This commit is contained in:
10
ElectronNET.API/Entities/TrayClickEventArgs.cs
Normal file
10
ElectronNET.API/Entities/TrayClickEventArgs.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace ElectronNET.API
|
||||
{
|
||||
public class TrayClickEventArgs
|
||||
{
|
||||
public bool AltKey { get; set; }
|
||||
public bool ShiftKey { get; set; }
|
||||
public bool CtrlKey { get; set; }
|
||||
public bool MetaKey { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user