GrayFullBuster
GrayFullBuster

Reputation: 1063

How to make label, textbox, combobox in C# Windows Forms accept and display chinese,japanese,korean and etc characters?

When I paste an chinese, japanese, korean text the textbox shows box character. How could I make displayed the character? What are the things to do?

Upvotes: 0

Views: 1757

Answers (1)

devio
devio

Reputation: 37205

Since .Net supports Unicode, and thus each of the languages you mention, make sure you use the correct font in your textbox. Depending on which language you target, there are different "preferred" fonts for each language.

See other questions here, such as

Is Arial Unicode MS right font for WinForms UI?

How to render unicode characters in the correct font? (C#/WinForms)

Wikipedia on Unicode Fonts

Upvotes: 1

Related Questions