private void KeyboardNotification(object sender, KeyboardNotificationEventArgs e)
        {
            // Turn on the buttons
            PlayerClicked = true;

            LastPlayerClicked = kb.LookupIntKey(e.Key);
        }
Esempio n. 2
0
 private void Kb_KeyboardNotification(object sender, KeyboardNotificationEventArgs e)
 {
     this.LastPressed = e.Key.ToString();
 }