Multilingual TextBox-Winforms C#
I need to display Korean and Arabic characters in TextBox. Following code is working fine for Arabic but not for Korean.
Any suggestion will be helpful?
private void PrintArabicAndKorean()
{
char aleph;
char ra;
char dal;
char wao;
char korean;
string word;
aleph = '\u0627';
ra = '\u0631';
dal = '\u062F';
wao = '\u0648';
korean ='\uAE00';
word = korean.ToString()+ aleph.ToString() + ra.ToString() + dal.ToString() + wao.ToString();
multiLingualTextBoxs1.Text = word;开发者_Go百科
}
What font are you using? Does the font support the Korean code points?
Try to mark the "Install files for East Asian languages". (Control Panel --> Regional and Language Options --> Languages)
(source: pptfaq.com)
精彩评论