WPF wrong KeyDown ASCII codes

后端 未结 4 967
北荒
北荒 2020-12-21 02:51

I need to get the numeric values of keyboard keys based on ASCII table .As WPF doesn\'t have built in solution I have tried several hacks:

1. This on

4条回答
  •  抹茶落季
    2020-12-21 02:58

    Look at KeyEventUtility.GetCharFromKey( e.Key )

    UPDATE: sorry that was some library code of mine

        public static class KeyEventUtility
    {
        // ReSharper disable InconsistentNaming
        public enum MapType : uint
        {
            MAPVK_VK_TO_VSC = 0x0,
            MAPVK_VSC_TO_VK = 0x1,
            MAPVK_VK_TO_CHAR = 0x2,
            MAPVK_VSC_TO_VK_EX = 0x3,
        }
        // ReSharper restore InconsistentNaming
    
        [DllImport( "user32.dll" )]
        public static extern int ToUnicode(
            uint wVirtKey,
            uint wScanCode,
            byte[] lpKeyState,
            [Out, MarshalAs( UnmanagedType.LPWStr, SizeParamIndex = 4 )] 
           StringBuilder pwszBuff,
        int cchBuff,
        uint wFlags );
    
    [DllImport( "user32.dll" )]
    public static extern bool GetKeyboardState( byte[] lpKeyState );
    
    [DllImport( "user32.dll" )]
    public static extern uint MapVirtualKey( uint uCode, MapType uMapType );
    
    public static char GetCharFromKey( Key key )
        {
            char ch = ' ';
    
            int virtualKey = KeyInterop.VirtualKeyFromKey( key );
            var keyboardState = new byte[256];
            GetKeyboardState( keyboardState );
    
            uint scanCode = MapVirtualKey( (uint)virtualKey, MapType.MAPVK_VK_TO_VSC );
            var stringBuilder = new StringBuilder( 2 );
    
            int result = ToUnicode( (uint)virtualKey, scanCode, keyboardState, stringBuilder, stringBuilder.Capacity, 0 );
            switch ( result )
            {
            case -1:
                break;
            case 0:
                break;
            case 1:
                {
                    ch = stringBuilder[0];
                    break;
                }
            default:
                {
                    ch = stringBuilder[0];
                    break;
                }
            }
            return ch;
        }
    

提交回复
热议问题