LanguageSettingsDisplayLanguageChangedGlobal Event
Namespace: KGySoftAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.2.0
public static event EventHandler DisplayLanguageChangedGlobal
Public Shared Event DisplayLanguageChangedGlobal As EventHandler
public:
static event EventHandler^ DisplayLanguageChangedGlobal {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
member DisplayLanguageChangedGlobal : IEvent<EventHandler,
EventArgs>
Value
EventHandler
The
DisplayLanguage property reflects the display culture of the current thread (
Thread.CurrentThread.CurrentUICulture).
This event triggers all subscribers regardless of their source thread in the current
AppDomain.
When the event is triggered, the subscribers are invoked in the thread of the changed display language. You might
want to check if the thread of the invocation is the same as the thread of the subscription.
To notify subscribers from the affected thread only use the
DisplayLanguageChanged event instead.