File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -346,6 +346,11 @@ public static class Keys
346
346
/// </summary>
347
347
public static readonly string Command = Convert . ToString ( Convert . ToChar ( 0xE03D , CultureInfo . InvariantCulture ) , CultureInfo . InvariantCulture ) ;
348
348
349
+ /// <summary>
350
+ /// Represents the Zenkaku/Hankaku key.
351
+ /// </summary>
352
+ public static readonly string ZenkakuHankaku = Convert . ToString ( Convert . ToChar ( 0xE040 , CultureInfo . InvariantCulture ) , CultureInfo . InvariantCulture ) ;
353
+
349
354
private static Dictionary < string , string > descriptions ;
350
355
351
356
/// <summary>
@@ -414,6 +419,7 @@ internal static object GetDescription(string value)
414
419
descriptions . Add ( F12 , "F12" ) ;
415
420
descriptions . Add ( Meta , "Meta" ) ;
416
421
descriptions . Add ( Command , "Command" ) ;
422
+ descriptions . Add ( ZenkakuHankaku , "Zenkaku Hankaku" ) ;
417
423
}
418
424
419
425
if ( descriptions . ContainsKey ( value ) )
You can’t perform that action at this time.
0 commit comments