The Shortcut control returns a flat list of all keys pressed. In the Windows API Register Hotkey world, keys are distinct from modifiers, but in the input handling world (the control), they are all just "keys". You need to iterate through that list and sort the keys: if it is a modifier (ctrl, shift, alt, win), add it to a flags enum; otherwise, treat it as the specific trigger key.