InputLanguageChangedEventArgs Class
Provides data for the InputLanguageChanged event.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The InputLanguageChangedEventArgs type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | InputLanguageChangedEventArgs(CultureInfo, Byte) | Initializes a new instance of the InputLanguageChangedEventArgs class with the specified locale and character set. |
![]() | InputLanguageChangedEventArgs(InputLanguage, Byte) | Initializes a new instance of the InputLanguageChangedEventArgs class with the specified input language and character set. |
| Name | 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. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
You can use the data from the InputLanguageChangedEventArgs to make decisions about whether to change Input Method Editors (IMEs) or swap right-to-left values. You can also change the CurrentCulture of a thread and the CurrentUICulture properties so that different resources get picked up.
An InputLanguageChangedEventArgs identifies the locale and the character set of the new input language.
The InputLanguageChanging event precedes the InputLanguageChanged event.
The following example creates a new Form and attaches an event handler to the InputLanguageChanged event. This event changes the IMEmode when the input language changes to Japanese.
#using <System.Data.dll> #using <System.Windows.Forms.dll> #using <System.dll> #using <System.Drawing.dll> using namespace System; using namespace System::Drawing; using namespace System::Collections; using namespace System::ComponentModel; using namespace System::Windows::Forms; using namespace System::Data; public ref class Form1: public System::Windows::Forms::Form { private: RichTextBox^ rtb; public: Form1() { rtb = gcnew RichTextBox; this->Controls->Add( rtb ); rtb->Dock = DockStyle::Fill; this->InputLanguageChanged += gcnew InputLanguageChangedEventHandler( this, &Form1::languageChange ); } private: void languageChange( Object^ /*sender*/, InputLanguageChangedEventArgs^ e ) { // If the input language is Japanese. // set the initial IMEMode to Katakana. if ( e->InputLanguage->Culture->TwoLetterISOLanguageName->Equals( "ja" ) ) { rtb->ImeMode = System::Windows::Forms::ImeMode::Katakana; } } }; int main() { Application::Run( gcnew Form1 ); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
