How to make multi-language app in Winforms?
I have an application and I need to use two languages in that application. For example :
- English
- Arabic
But I don't know how could I do that. Anybody can help me for this?
I need some examples in C# Windows Forms
.
Solution 1:
Using Localizable
and Language
Property of Form
Form
class have Localizable
and Language
Property. If you set Localizable
property to true, you can add controls to form for default language and set properties for default language. Then you can select another languages and change properties for those languages. This way, value or localizable properties will store in separate resource files for different cultures.
Note: A property is considered as localizable if it's decorated with [Localizable(true)]
attribute. For example BackColor
property is not localizable, but Text
property is localizable.
Localizing Messages and Images using Resx Resource Files
The project has a Rseources.Resx
file under Properties
folder which you can use for localizing images and messages. Also you can add .resx Resource files to project. For example you can create a Strings.resx
file and add some string key and values to it, then copy it as strings.en.resx
and strings.fa.resx
and edit values for those languages. Then you can use those resource values, For example:
MessageBox.Show(Properties.Resources.AreYouSure);
Will show the value of AreYouSure
from Resources.Resx
file with the current UI culture language.
If a resource key not found for a culture or the specified culture not found for the resource file, value of the key in neutral culture of the Resx
file will be used.
Change the language at Run-time
You can set the culture of a application to Persian
using:
System.Threading.Thread.CurrentThread.CurrentCulture =
System.Globalization.CultureInfo.GetCultureInfo("fa");
System.Threading.Thread.CurrentThread.CurrentUICulture =
System.Globalization.CultureInfo.GetCultureInfo("fa");
You should put the above code at start of your application or before showing a form.
More information
For more information and Example:
- Globalizing Windows Forms
- Walkthrough: Localizing Windows Forms
- How to: Set the Culture and UI Culture for Windows Forms Globalization
Solution 2:
Using a resource file might be easier in some cases.
-
Add a new resource file to the project in Visual Studio. eg.
en_local.resx
for englishfr_local.resx
for french. -
Open the resource file, in the strings, name your string and put different translation in the value cell. For example:
next station
's value inen_local.resx
isnext station
but infr_local.resx
can beProchaine station
. example as below: -
In the code, use
public static ResourceManager rm = new ResourceManager("WindowsFormsApp1.en_local", Assembly.GetExecutingAssembly());
to select the language resource. -
When you need to output any string to the application, use function
GetString()
, for examplelabel1.Text = rm.GetString("welcome");
Solution 3:
There are some missing parts in wwjih123's answer.
In VS2017
1-First of all create resource in projects root folder (Not in Resources folder). Name it like lang_en, lang_tr, lang_fr etc...
2-then object properties window leave Build action as Embedded Resource
3-inside the lang_tr.resx file add new string lbl_error and value "Hata" in turkish (whatever you like)
4- inside the class define variables as:
ResourceManager res_man; // declare Resource manager to access to specific cultureinfo
5-in class initialization after InitializeComponent();
Console.WriteLine("You are speaking {0}",
System.Globalization.CultureInfo.CurrentUICulture.TwoLetterISOLanguageName);
res_man = new ResourceManager("MyApp.lang_"+ System.Globalization.CultureInfo.CurrentUICulture.TwoLetterISOLanguageName, Assembly.GetExecutingAssembly());
lblError.Text = res_man.GetString("lbl_error");
if your ui language is Turkish it will automatically load the lang_tr.resx, if english the lang_en.resx file will be loaded etc...
good luck