Unplanned
Last Updated: 07 Jul 2021 07:27 by ADMIN

Currently, there is only one predefined keyboard layout - QWERTY. 
For example, when the culture is:

  • French we should apply the AZERTY layout
  • German we should apply the QWERTZ layout

As a workaround, I have modified and saved the AZERTY and QWERTZ keyboard layouts into XML files. You can use the LoadLayout method of RadVirtualKeyboard to load them.

this.radVirtualKeyboard1.LoadLayout(@"..\..\Layouts\azerty.xml");
//this.radVirtualKeyboard1.LoadLayout(@"..\..\Layouts\qwertz.xml");

Completed
Last Updated: 08 Oct 2021 10:11 by ADMIN
Release R3 2021 SP1
Created by: Yannis
Comments: 0
Category: VirtualKeyboard
Type: Feature Request
0

Introduce a boolean property that will control whether a beep sound will be played when the user presses a key.

It would be nice to specify which sound from the SystemSounds will be used in the keyboard.

Workaround: 

        private void radVirtualKeyboard1_KeySent(object sender, Telerik.WinControls.VirtualKeyboard.VirtualKeyboardKeySentEventArgs e)
        {
            RadItem item = e.Key as RadItem;
            if (item != null)
            {
                System.Media.SystemSounds.Beep.Play();
            }
        }

 

 

Unplanned
Last Updated: 09 Mar 2022 14:17 by Dinko
Created by: Dinko
Comments: 0
Category: VirtualKeyboard
Type: Feature Request
0
Currently, when the user closes the form, the form will be hidden and not close. We can provide a way for the user to close it.