Abu Raihan
Abu Raihan

Reputation: 97

"KeyDown" event not triggered when typing with Vietnam language

I am developing and UWP app. I need to customize the "KeyDown" event of "TextBox" control. "KeyDown" event not triggered when typing with Vietnam language but it works fine with English / Korean typing.

Do I need to add anything additional settings or change any properties? Can anyone please help me with this?

Upvotes: 0

Views: 520

Answers (1)

Nico Zhu
Nico Zhu

Reputation: 32785

"KeyDown” event not triggered when typing with Vietnam language

It is by design, enable the Input Method Editor (IME) and Text Services Framework (TSF) when your apps have users who require assistive technology to enter text in complex languages, like Japanese and Simplified Chinese. Apps do not receive this event when an Input Method Editor (IME) is enabled. The Input Method Editor (IME) handles all keyboard input and sets Handled to true.

Upvotes: 1

Related Questions