.NET Program that runs in the background [Answered]
How would I make an .exe program in c# .NET that runs in the background (It will have a tray icon instead). It will be used for capturing certain hotkey presses
Hardcodet.Wpf.TaskbarNotification nuget. That's what I use
RegisterHotKey function i think that should workWin + V ¯\_(ツ)_/¯
RAWINPUT* has to point to a struct on the stack or a pinned / fixed arrayWriteRawInputToBuffer on the WM_INPUT eventThe type or namespace name 'RAWINPUTHEADER' could not be found also how excacly do I use this function? will it block the character or only capture the input?