Form.InputLanguageChanged Event
Occurs after the input language of the form has changed.
[Visual Basic] Public Event InputLanguageChanged As _ InputLanguageChangedEventHandler [C#] public event InputLanguageChangedEventHandler InputLanguageChanged; [C++] public: __event InputLanguageChangedEventHandler* InputLanguageChanged;
[JScript] In JScript, you can handle the events defined by a class, but you cannot define your own.
Event Data
The event handler receives an argument of type InputLanguageChangedEventArgs containing data related to this event. The following InputLanguageChangedEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| CharSet | Gets the character set associated with the new input language. |
| Culture | Gets the locale of the input language. |
| InputLanguage | Gets a value indicating the input language. |
Remarks
You can use this event to make changes to your form's appearance and text based on changes made to the input language of the form.
For more information about handling events, see Consuming Events.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also
Form Class | Form Members | System.Windows.Forms Namespace | InputLanguageChanging | OnInputLanguageChanged