How to disable/override Windows 10 Hotkeys with C# -
i'm trying register hotkeys, can't because windows defaults. ctrl+win+1 minimizes current window. i'd else. i'd disable win+left/right. i'm trying handle ctrl+win+arrow in own virtual desktop manager. zvirtualdesktop this has done using c# , win32 api if necessary. absolutely cannot use autohotkey. every page find descibes how can done autohotkey. i'd post code, don't know start. use win32 register hotkeys. assume there way override them, can't find info. does have idea? it possible using keyboard hook. hook class can found on codeproject article using below code prevent win + left or win + right occurring. can use override whichever keys you'd like. this override hotkeys added via registerhotkey win api. once have classes in project can add handlers static hookmanager class below. //it's worth noting here if subscribe key_press event break international accent keys. hookmanager.keypress += hookmanager_keypre...