Application.CurrentInputLanguage Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the current input language for the current thread.
public:
static property System::Windows::Forms::InputLanguage ^ CurrentInputLanguage { System::Windows::Forms::InputLanguage ^ get(); void set(System::Windows::Forms::InputLanguage ^ value); };
public static System.Windows.Forms.InputLanguage CurrentInputLanguage { get; set; }
static member CurrentInputLanguage : System.Windows.Forms.InputLanguage with get, set
Public Shared Property CurrentInputLanguage As InputLanguage
Property Value
An InputLanguage representing the current input language for the current thread.
Examples
The following code example gets this property and displays its value in a text box. The example requires that textBox1
has been placed on a form.
private:
void PrintCurrentInputLanguage()
{
textBox1->Text = "The current input language is: {0}",
Application::CurrentInputLanguage->Culture->EnglishName;
}
private void PrintCurrentInputLanguage() {
textBox1.Text = "The current input language is: " +
Application.CurrentInputLanguage.Culture.EnglishName;
}
Private Sub PrintCurrentInputLanguage()
textBox1.Text = "The current input language is: " & _
Application.CurrentInputLanguage.Culture.EnglishName
End Sub
Applies to
See also
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.