File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -346,6 +346,11 @@ public static class Keys
346346 /// </summary>
347347 public static readonly string Command = Convert . ToString ( Convert . ToChar ( 0xE03D , CultureInfo . InvariantCulture ) , CultureInfo . InvariantCulture ) ;
348348
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+
349354 private static Dictionary < string , string > descriptions ;
350355
351356 /// <summary>
@@ -414,6 +419,7 @@ internal static object GetDescription(string value)
414419 descriptions . Add ( F12 , "F12" ) ;
415420 descriptions . Add ( Meta , "Meta" ) ;
416421 descriptions . Add ( Command , "Command" ) ;
422+ descriptions . Add ( ZenkakuHankaku , "Zenkaku Hankaku" ) ;
417423 }
418424
419425 if ( descriptions . ContainsKey ( value ) )
You can’t perform that action at this time.
0 commit comments