Merge branch 'master' into fix_frame_dialog_messageboxes

This commit is contained in:
Charlie Kindel
2020-05-31 19:58:05 -06:00
9 changed files with 231 additions and 79 deletions

View File

@@ -469,7 +469,8 @@ static class Demo {
if ((keyEvent.Key & Key.AltMask) != 0)
msg += "Alt ";
msg += $"{(((uint)keyEvent.KeyValue & (uint)Key.CharMask) > 26 ? $"{(char)keyEvent.KeyValue}" : $"{keyEvent.Key}")}";
list.Add (msg);
//list.Add (msg);
list.Add (keyEvent.ToString ());
break;