ApplicationBase.UICulture Property

Definition

Gets the culture that the current thread uses for retrieving culture-specific resources.

public:
 property System::Globalization::CultureInfo ^ UICulture { System::Globalization::CultureInfo ^ get(); };
public System.Globalization.CultureInfo UICulture { get; }
member this.UICulture : System.Globalization.CultureInfo
Public ReadOnly Property UICulture As CultureInfo

Property Value

A CultureInfo object that represents the culture that the current thread uses for retrieving culture-specific resources.

Examples

This example uses the My.Application.CurrentCulture property to cache the current culture before changing it by using ChangeUICulture. The My.Application.ChangeUICulture method sets the culture that the My.Resources object uses for retrieving resources.

Sub ShowLocalizedMessage()
    Dim culture As String = My.Application.UICulture.Name
    My.Application.ChangeUICulture("fr-FR")
    MsgBox(My.Resources.Message)
    My.Application.ChangeUICulture(culture)
End Sub

For this example to work, your application must have a string named Message in the application's resource file, and the application should have the French-culture version of that resource file, Resources.fr-FR.resx. For more information, see How to: Add or Remove Resources.

If the application does not have the French-culture version of that resource file, the My.Resources object retrieves the resource from the default-culture resource file.

Remarks

The My.Application.CurrentUICulture property gets the CultureInfo object that the current thread uses for retrieving culture-specific resources. This object is identical to the one returned by the CurrentUICulture property. The CurrentUICulture property determines the culture used by the Resource Manager and the My.Resources object, information it needs to look up culture-specific resources at run time.

To change the culture, you can use the ChangeUICulture method or assign a different CultureInfo object to the CurrentUICulture property.

The CurrentCulture setting is different from a language setting. It contains only data related to the standard settings for a geographical region.

Use the My.Application.CurrentCulture property to get the culture that the current thread uses for string manipulation and string formatting.

Availability by Project Type

Project type Available
Windows Forms Application Yes
Class Library Yes
Console Application Yes
Windows Forms Control Library Yes
Web Control Library No
Windows Service Yes
Web Site No

Applies to

See also