Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Avalonia.XPF / multi-platform support (Read 439 times)
Slavcho
YaBB Moderator
*****
Offline


tech.support

Posts: 3473
Joined: Oct 19th, 2005
Avalonia.XPF / multi-platform support
Nov 3rd, 2025 at 7:05am
Print Post  
Upcoming release of WPF Virtual Keyboard adds support for Avalonia.XPF. If the control detects non-Windows system, it replaces the Windows native API -based keyboard emulation code with WPF event routing -based one. With that, the keyboard loses several features on Macos and Linux:

- sending keyboard events to a different process will not work;

- the keyboard cannot follow current input language of the OS (what you'd select from Windows taskbar), and it must be set manually:

Code
Select All
vkb.InputLocale = new CultureInfo("de-DE") 


- it can no longer query the OS for mapping from virtual key codes to key labels, which the keyboard uses to show standard layouts. Language details are now loaded from embedded resource tables, and we've only implemented a few languages so far (English, German, French, Spanish, Dutch, Swedish).

If anyone is interested in trying it, please install this pre-release nuget package, and let us know if you need a missing language with higher priority:

https://www.nuget.org/packages/MindFusion.Keyboard.Wpf/5.2.0-alpha1

Any comments, questions and general feedback are welcome.
« Last Edit: Nov 3rd, 2025 at 11:27am by Slavcho »  
Back to top
 
IP Logged
 
Slavcho
YaBB Moderator
*****
Offline


tech.support

Posts: 3473
Joined: Oct 19th, 2005
Re: Avalonia.XPF / multi-platform support
Reply #1 - Nov 7th, 2025 at 3:14pm
Print Post  
New build here adds more languages to keyboard's XPF driver:

https://www.nuget.org/packages/MindFusion.Keyboard.Wpf/5.2.0-alpha2

The current list now is:

  • English / en-US
  • English / en-GB
  • German / de-DE
  • French / fr-FR
  • Dutch / nl-NL
  • Swedish / sv-SE
  • Spanish / es-ES
  • Portuguese / pt-PT
  • Italian / it-IT
  • Norwegian / nb-NO
  • Danish / da-DK
  • Bulgarian / bg-BG / that's ours Wink
  • Polish / pl-PL
  • Romanian / ro-RO
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint