Completed
Last Updated: 03 Feb 2023 09:14 by ADMIN
Release LIB 2023.1.206 (6 Feb 2023)
Demetris
Created on: 23 Nov 2022 17:58
Category: UI for WPF
Type: Bug Report
1
VirtualKeyboard: Keys are not updated when changing the starting Culture
The keys are not updated when changing the starting Culture of the RadVirtualKeyboard control.
1 comment
ADMIN
Dilyan Traykov
Posted on: 23 Nov 2022 18:14

A possible workaround, for the time being, involves setting the InputLanguageManager.Current.CurrentInputLanguage property along with the Culture in a Dispatcher.BeginInvoke call:

            Dispatcher.BeginInvoke(new Action(() =>
            {
                var culture = System.Globalization.CultureInfo.GetCultureInfo("ar-AE");
                InputLanguageManager.Current.CurrentInputLanguage = culture;
                virtualKeyboard.Culture = culture;
            }), System.Windows.Threading.DispatcherPriority.Loaded);

Regards,
Dilyan Traykov
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.