次の方法で共有


Application.CurrentInputLanguage プロパティ

現在のスレッドの現在の入力言語を取得または設定します。

Public Shared Property CurrentInputLanguage As InputLanguage
[C#]
public static InputLanguage CurrentInputLanguage {get; set;}
[C++]
public: __property static InputLanguage* get_CurrentInputLanguage();public: __property static void set_CurrentInputLanguage(InputLanguage*);
[JScript]
public static function get CurrentInputLanguage() : InputLanguage;public static function set CurrentInputLanguage(InputLanguage);

プロパティ値

現在のスレッドの現在の入力言語を表す InputLanguage

使用例

[Visual Basic, C#, C++] このプロパティを取得し、プロパティ値をテキスト ボックスに表示する例を次に示します。この例は、 textBox1 が既にフォームに配置されていることを前提としています。

 
Private Sub PrintCurrentInputLanguage()
   textBox1.Text = "The current input language is: " & _
      Application.CurrentInputLanguage.Culture.EnglishName
End Sub
  

[C#] 
private void PrintCurrentInputLanguage() {
    textBox1.Text = "The current input language is: " +
       Application.CurrentInputLanguage.Culture.EnglishName;
 }
   

[C++] 
private:
   void PrintCurrentInputLanguage() {
      textBox1->Text = S"The current input language is: {0}",
         Application::CurrentInputLanguage->Culture->EnglishName;
   }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

.NET Framework セキュリティ:

参照

Application クラス | Application メンバ | System.Windows.Forms 名前空間 | CultureInfo | InputLanguage