public static CultureInfo FormattingLanguage { get; set; }
Public Shared Property FormattingLanguage As CultureInfo
Get
Set
public:
static property CultureInfo^ FormattingLanguage {
CultureInfo^ get ();
void set (CultureInfo^ value);
}
static member FormattingLanguage : CultureInfo with get, set
Formatting language represents the regional setting of formatting and parsing numbers, date and time values, currency, etc.
Use this property instead of Thread.CurrentThread.CurrentCulture to keep language changes synchronized in your application.
When this property is set, FormattingLanguageChanged and FormattingLanguageChangedGlobal events are triggered, which makes possible for example refreshing UI components displaying culture-specific formatted values.
ArgumentNullException | value is . |