Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriain <iain.holmes@xamarin.com>2018-12-10 13:22:17 +0300
committerGitHub <noreply@github.com>2018-12-10 13:22:17 +0300
commite764f8b6438fd9df6dbdca9c5e37e14b97df8db2 (patch)
tree3053cecc2ee602e72a8bf8add4e595dae389821f
parentd799ce5d64b95ce5d0fdfa3749d019407f692309 (diff)
parent28e610747631cb73c59a7c107998251fc4d4f1c0 (diff)
Merge pull request #902 from mono/add-missing-keys
[Xwt] Add some missing Key constants
-rw-r--r--Xwt/Xwt/Key.cs23
1 files changed, 21 insertions, 2 deletions
diff --git a/Xwt/Xwt/Key.cs b/Xwt/Xwt/Key.cs
index e1d78845..2cac5b74 100644
--- a/Xwt/Xwt/Key.cs
+++ b/Xwt/Xwt/Key.cs
@@ -159,9 +159,19 @@ namespace Xwt
HyperRight = 0xffee,
Caret = 0xfe52,
+ Exclamation = 0x21,
Quote = 0x22,
- LeftBracket = 0x28,
- RightBracket = 0x29,
+ Hash = 0x23,
+ Dollar = 0x24,
+ Percentage = 0x25,
+ Ampersand = 0x26,
+ Apostrophe = 0x27,
+ [Obsolete]
+ LeftBracket = 0x28, // Should be LeftParenthesis. [ is a left bracket
+ LeftParenthesis = 0x28,
+ [Obsolete]
+ RightBracket = 0x29, // Should be RightParenthesis. ] is a right bracket
+ RightParenthesis = 0x29,
Asterisk = 0x2a,
Plus = 0x2b,
Comma = 0x2c,
@@ -201,6 +211,15 @@ namespace Xwt
X = 0x58,
Y = 0x59,
Z = 0x5a,
+ LeftSquareBracket = 0x5b,
+ RightSquareBracket = 0x5d,
+ Hat = 0x5e,
+ Underscore = 0x5f,
+ Backtick = 0x60,
+ LeftBrace = 0x7b,
+ Pipe = 0x7c,
+ RightBrace = 0x7d,
+ Tilde = 0x7e
}
}