This documentation is archived and is not being maintained.
InputLanguageManager Class
Visual Studio 2008
Provides facilities for managing input languages in Windows Presentation Foundation (WPF).
Assembly: PresentationCore (in PresentationCore.dll)
The following example demonstrates how to use an InputLanguageManager to set the input language of a TextBox element.
this.Dispatcher.Thread.CurrentCulture.Name.ToString(); InputLanguageManager.SetInputLanguage(myTextBox, CultureInfo.CreateSpecificCulture("fr")); tb2.Text = "Available Input Languages:"; lb1.ItemsSource = InputLanguageManager.Current.AvailableInputLanguages; tb3.Text = "Input Language of myTextBox is " + InputLanguageManager.GetInputLanguage(myTextBox).ToString(); tb4.Text = "CurrentCulture is Set to " + this.Dispatcher.Thread.CurrentCulture.Name.ToString();
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
