Udostępnij za pośrednictwem


Application.CurrentInputLanguage Właściwość

Definicja

Pobiera lub ustawia bieżący język danych wejściowych dla bieżącego wątku.

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; }
member this.CurrentInputLanguage : System.Windows.Forms.InputLanguage with get, set
Public Shared Property CurrentInputLanguage As InputLanguage

Wartość właściwości

InputLanguage

Reprezentujący InputLanguage bieżący język danych wejściowych dla bieżącego wątku.

Przykłady

Poniższy przykład kodu pobiera tę właściwość i wyświetla jej wartość w polu tekstowym. Przykład wymaga, aby textBox1 został umieszczony w formularzu.

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

Dotyczy

Zobacz też