次の方法で共有


InputPanel.CurrentInputMethod プロパティ

[このドキュメントはプレビュー版であり、後のリリースで変更されることがあります。 空白のトピックは、プレースホルダーとして挿入されています。]

Pocket PC の入力方式を取得または設定します。

名前空間:  Microsoft.WindowsCE.Forms
アセンブリ:  Microsoft.WindowsCE.Forms (Microsoft.WindowsCE.Forms.dll 内)

構文

'宣言
Public Property CurrentInputMethod As InputMethod
    Get
    Set
'使用
Dim instance As InputPanel
Dim value As InputMethod

value = instance.CurrentInputMethod

instance.CurrentInputMethod = value
public InputMethod CurrentInputMethod { get; set; }
public:
property InputMethod^ CurrentInputMethod {
    InputMethod^ get ();
    void set (InputMethod^ value);
}
member CurrentInputMethod : InputMethod with get, set

プロパティ値

型 : Microsoft.WindowsCE.Forms.InputMethod
入力方式を表すオブジェクト。

解説

このプロパティは、デバイス上で利用できる任意の入力方式に設定できます。

このプロパティを、リスト ボックスで選択された方式に設定する例を次に示します。このコード例は、InputPanel.InputMethodCollection クラスのトピックで取り上げているコード例の一部分です。

' This event handler iterates through the' InputMethodCollection and sets the input method' to the input method selected in the list box.' When a member of the collection is the' same the selected value in the list box, that' method is set to the current input method.PrivateSub ListBox1_SelectedIndexChanged(sender AsObject, e As EventArgs) Handles ListBox1.SelectedIndexChanged

   ' Get the selected input method from the list box.Dim strIM AsString
   strIM = ListBox1.SelectedItem.ToString()

   ' Iterate through the input method collection.   ' When there is a match with the input method   ' selected in the list box, set the   ' CurrentInputMethod property to the selected method.Dim im As InputMethod
   ForEach im In  InputPanel1.InputMethods
      If im.Name = strIM Then         ' Change the input method.
         InputPanel1.CurrentInputMethod = im
      EndIfNext im
EndSub
// Get the selected input method from the list box.string strIM;
strIM = listBox1.SelectedItem.ToString();

// Iterate through the input method collection.// When there is a match with the input method// selected in the list box, set the// CurrentInputMethod property to the selected method.foreach (InputMethod im in ip.InputMethods)
{
 if (im.Name == strIM)
  // Change the input method.
  ip.CurrentInputMethod = im;
}

.NET Framework セキュリティ

プラットフォーム

Windows CE, Windows Mobile for Pocket PC

.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。 サポートされているバージョンについては、「.NET フレームワークのシステム要件」を参照してください。

バージョン情報

.NET Compact Framework

サポート対象 : 3.5、2.0

参照

参照

InputPanel クラス

InputPanel メンバー

Microsoft.WindowsCE.Forms 名前空間