MediatedCommunications / WindowsInput

Capture and Simulate Keyboard and Mouse Input
MIT License
115 stars 17 forks source link

Win + L key simulation failed #19

Closed 869570967 closed 1 year ago

869570967 commented 2 years ago

Simulate.Events().ClickChord(KeyCode.LWin, KeyCode.L).Invoke();

869570967 commented 2 years ago

Simulate.Events().Click(KeyCode.LWin).ClickChord(KeyCode.LWin, KeyCode.L).Invoke(); This will only execute “Click(KeyCode.LWin)”,“ClickChord(KeyCode.LWin, KeyCode.L)” not effective Separate execution is normal for example: Simulate.Events().Click(KeyCode.LWin).Invoke(); is ok or Simulate.Events().ClickChord(KeyCode.LWin, KeyCode.L).Invoke(); is ok