InputLanguageChangedEventArgs Class
Assembly: System.Windows.Forms (in system.windows.forms.dll)
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; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; public class Form1 : System.Windows.Forms.Form { RichTextBox rtb = new RichTextBox(); public Form1() { this.Controls.Add(rtb); rtb.Dock = DockStyle.Fill; this.InputLanguageChanged += new InputLanguageChangedEventHandler(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; } } public static void Main(string[] args) { Application.Run(new Form1()); } }
import System.*;
import System.Drawing.*;
import System.Collections.*;
import System.ComponentModel.*;
import System.Windows.Forms.*;
import System.Data.*;
public class Form1 extends System.Windows.Forms.Form
{
private RichTextBox rtb = new RichTextBox();
public Form1()
{
this.get_Controls().Add(rtb);
rtb.set_Dock(DockStyle.Fill);
this.add_InputLanguageChanged(
new InputLanguageChangedEventHandler(LanguageChange));
} //Form1
private void LanguageChange(Object sender, InputLanguageChangedEventArgs e)
{
// If the input language is Japanese.
// set the initial IMEMode to Katakana.
if (e.get_InputLanguage().get_Culture().get_TwoLetterISOLanguageName().
Equals("ja")) {
rtb.set_ImeMode(System.Windows.Forms.ImeMode.Katakana);
}
} //LanguageChange
public static void main(String[] args)
{
Application.Run(new Form1());
} //main
} //Form1
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.