Created
August 3, 2017 20:59
-
-
Save MangelMaxime/787be53a75acc226f90dced9e277aa94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let keyboardCaptureHandler (keyboard: Keyboard.Record) = | |
match keyboard.Modifiers with | |
| { Control = true } -> | |
match keyboard.LastKey with | |
| Keyboard.Keys.O -> | |
window2.Closed <- false | |
true // Key has been captured | |
| _ -> false | |
| _ -> | |
match keyboard.LastKey with | |
| Keyboard.Keys.Escape -> | |
if not window2.Closed then | |
window2.Closed <- true | |
true // Key has been captured | |
| _ -> false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment