Click here to Skip to main content
15,867,568 members
Articles / Programming Languages / C#
Article

Multilingual Support in C#

Rate me:
Please Sign up or sign in to vote.
4.22/5 (23 votes)
18 Oct 20025 min read 609.7K   47   52
The article gives an introduction on how to develop multilingual applications using C#

Introduction

The computer is now in use in almost all parts of the world and therefore work is in progress to give support to languages other than English. Many major languages of the world like Arabic, Hindi and Chinese are not written in Roman Script, so special features are provided for dealing with these languages. This article will tell how to implement multilingual application using C#. Our Example Script will be Arabic. But it can be generalized to any major language of the world.

Details

C# stores character in the form of Unicode Characters. Unicode is a 16 bit encoding scheme of characters and has characters of all major languages of the world like Arabic, Urdu, Hindi, Chinese, Korean, Hebrew etc. Every character has a Unicode code point, e.g. Arabic Character Aleph has codepoint 1575. To display different languages and script, one has to install support for the script. Windows 2000 has support for displaying many scripts. Script is the writing style of language. For example, English and many western languages are written in Roman Script. Arabic, Farsi, Urdu are written in Arabic Script. Hindi, Bengali, Tamil are written in Indic Script. Every script has its own features. Arabic Script is written from left to right and characters changes their shape according to the context.

To install support for Arabic or any other Script. Open Control Panel --> Regional Options --> Language Setting for the System and check your desired Script (Arabic in our case). After checking Arabic click on OK and Arabic Script support is installed on your computer and you can have input locale in Arabic, Farsi and Urdu.

Regional Options

For input, keyboard for Arabic, Farsi and Other languages can be installed from Control Panel --> Keyboard --> Input Locale --> Add.

So it is the configuration for displaying multilingual text. Now we will start C# IDE and explore its features. Throughout the article we will only concentrate on the code written for multilingual features. The code for form creation, adding controls to form and event handling will be generated by the IDE and will not be discussed.

The first example is of Message Box. Create a Windows Application. Place a button in the centre of form. Set the name and text properties of the button to btnMessage and "Show Message" respectively. For displaying Message Box, add following code to the Click event of btnMessage.

C#
protected void btnMessage_Click (object sender, System.EventArgs e)
{
    MessageBox.Show("English Text Example","English Title");
}

On Pressing F5, Form will be displayed and on clicking Show Message. Message Box will be displayed.

Messsage Box with English Text

Now for displaying Arabic text, type message and title using Arabic characters. The Message is " Urdu Text Example" and "Urdu Title" in Urdu Language.

C# Code for Urdu dispaly

The message box displayed by clicking Show Message Button will be

Messsage Box with Urdu Text

The Message box displays Urdu Text (in Arabic Script). but it has some problems. Arabic Script is written from Right to Left (The rightmost character is first character of string, and leftmost is the last character of string). So the text must be right aligned. In the above example both Title and Message are left aligned. Also the Title must be at right and the Close Button should be at left in a RightToLeft Scheme. This can be done by using style attributes as third parameter of MessageBox.Show method. Style Attributes are used to change the visual style and options of Message Box. For Example, for displaying a Cancel button with OK button, MessageBox.OKCancel is used as

C#
MessageBox.Show("Message","Title",MessageBox.OKCancel);

For RightToLeft MessageBox, RTLReading field is used. And for right aligning the text, RightAlign field is used. So in our new example these two are ORed and passed to Show method of MessageBox (you can OR multiple fields to give their style to MessageBox).

C# Code for RightToLeft Display

Messsage Box with RightToLeft

In above examples, we use Windows 2000 support to insert Arabic (Urdu) characters to the code. But if the development environment does not have support for writing multilingual characters, then this work can be done by code. The character data type of C# stores characters as Unicode character. So we can declare variables of character and string type and assign characters and words of different languages to these variables.

In the next example, we will display word "Urdu" in Arabic Script in a textbox without using Arabic Keyboard of Windows 2000.

C#
protected void button1_Click (object sender, System.EventArgs e)
{
    char aleph ;
    char ra;
    char dal;
    char wao;
    string word;
    aleph = '\u0627';
    ra = '\u0631';
    dal = '\u062F';
    wao = '\u0648';
    word = aleph.ToString() + ra.ToString()+dal.ToString()+ wao.ToString();
    textBox1.Text  = word;
}

Text Box with Urdu Text

During execution of the application, when we click on the button, word "urdu" in Arabic Script will be displayed in the textbox.

The word "urdu" in Arabic script consists of four characters: Aleph, Ra, Dal and Wao. So the Unicode values of these characters are stored in four variables. You can store any Unicode character in C# by giving its hexadecimal value as '\uXXXX'. Then next task is to concatenate these characters to have word. This is done by converting character to string (using ToString method). Finally the variable word( having Unicode string) is assigned to the text property of textbox. If Arabic Script support is installed on the system, then the word will be displayed in Right to Left direction.

The only problem with above code is that it is aligned to the right. All controls have a property RightToLeft. If this property is set to Yes, then not only text is displayed from Right to Left but also other features of controls have Right to Left direction. For Example, we place a ComboBox on the Form and add three items "Arabic", "Farsi" and "Urdu" (in Arabic Unicode Characters) to it.

Combo Box without RightToLeft

The Combo Box displays three words in Arabic Script but it does not have all Right to Left Features. In a Right To Left Control, all the words must be right aligned. Also the Dropdown Arrow must be at left of the control. Similarly if a control has vertical scrollbar then it must be at left of the control. This can be done by setting RightToLeft property of the control (e.g. our ComboBox) to Yes. After it, the output will be as desired.

Combo Box with RightToLeft

If RightToLeft property can have a third value Inherits. If a control has value Inherits then its RightToLeft value is same as of its Parent Control.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWant to Convert text in local laguage. Help Pin
Onick Ahmed12-May-14 22:06
Onick Ahmed12-May-14 22:06 
SuggestionType / Write Urdu / Arabic / Farsi in C# and VB.NET Pin
Naseem_Amjad31-Aug-13 6:10
Naseem_Amjad31-Aug-13 6:10 
GeneralUnicode and textbox [modified] Pin
linye19-Feb-10 2:00
linye19-Feb-10 2:00 
GeneralThank you Pin
babakzawari23-Jan-10 21:03
babakzawari23-Jan-10 21:03 
QuestionCan we display OK button text in urdu Pin
rajender303517-Feb-09 0:06
rajender303517-Feb-09 0:06 
QuestionWhere you able to set the title to contain Urdu text? Pin
Lee Elenbaas26-Mar-08 7:45
Lee Elenbaas26-Mar-08 7:45 
GeneralArabic Pin
Kwrapd4-Sep-07 19:39
Kwrapd4-Sep-07 19:39 
GeneralUrdu language problem Pin
samtam28-Nov-06 23:41
samtam28-Nov-06 23:41 
QuestionRightToLeft MenuItems Pin
BaraaSh5-Mar-06 4:00
BaraaSh5-Mar-06 4:00 
GeneralHelp Pin
sreejith ss nair18-Sep-05 21:32
sreejith ss nair18-Sep-05 21:32 
GeneralRe: Help Pin
saeed.darya15-Nov-06 20:29
saeed.darya15-Nov-06 20:29 
Generalwithout configuration changes Pin
Anonymous26-Apr-05 19:28
Anonymous26-Apr-05 19:28 
GeneralCorrect Code in MessageBox.Show to show Arabic Pin
Member 11212121-Mar-05 3:18
Member 11212121-Mar-05 3:18 
GeneralLanguage on Msg-Button Pin
Kuster Roli15-Sep-04 12:31
Kuster Roli15-Sep-04 12:31 
GeneralRe: Language on Msg-Button Pin
mshoukry_alkhwarazmi26-Sep-05 4:25
mshoukry_alkhwarazmi26-Sep-05 4:25 
GeneralMultilanguage over network Pin
Anonymous17-Apr-04 7:24
Anonymous17-Apr-04 7:24 
GeneralMultilingual Textbox Pin
ifigomal9-Sep-03 5:35
ifigomal9-Sep-03 5:35 
GeneralRe: Multilingual Textbox Pin
Tafseer Ahmed10-Sep-03 21:03
Tafseer Ahmed10-Sep-03 21:03 
GeneralRe: Multilingual Textbox Pin
Andrew Hamilton12-Mar-04 9:28
Andrew Hamilton12-Mar-04 9:28 
GeneralRe: Multilingual Textbox Pin
27-Sep-04 17:45
suss27-Sep-04 17:45 
GeneralRe: Multilingual Textbox Pin
sohailalikhan13-Mar-06 19:52
sohailalikhan13-Mar-06 19:52 
GeneralRe: Multilingual Textbox Pin
Naseem_Amjad13-Mar-06 21:05
Naseem_Amjad13-Mar-06 21:05 
GeneralRe: Multilingual Textbox Pin
Pouriya Ghamary20-Sep-11 23:03
Pouriya Ghamary20-Sep-11 23:03 
GeneralRight to Left Layout Form in C# Pin
A.Said5-Jul-03 22:24
A.Said5-Jul-03 22:24 
I tray to design Forms and components in right to left layout.
But the forms and the components most of the components dosen't have right to left property. I head about a Mirror property but I couldn't success it.
Do you have I ready code for this.

GeneralRe: Right to Left Layout Form in C# Pin
mimirshad4-Dec-07 21:12
mimirshad4-Dec-07 21:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.