Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey friends i am trying to make a Wpf application that accepts its inputs in Arabic or some languages other than English.I really don't know what all things, i have to care about.Do i have to care something from the Os side?
(i have tried it by using the font-family. But i know that its not the right way to do it.there should be some other solution other than font-family and resource)
Posted

1 solution

Hi
Just create a virtual keyboard with all the foreign characters (non ASCII characters).
Then each key's click event put
C#
textbox1.Text = textbox1.text + button1.Text;

This is C#, not WPF, so I'm not sure if the code is exactly the same.
WPF does support those strange characters.

Jacques

P.S. You might want a few virtual keyboards, changeable by a drop down menu. e.g. Chinese, Arabic, Latin etc.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900