Share via


InputPanel.InputMethods-Eigenschaft

Dieser Dokumentation für die Vorschau nur ist und in späteren Versionen geändert. Leere Themen wurden als Platzhalter eingefügt.]

Ruft eine Auflistung der verfügbaren Eingabemethoden auf einem Pocket PC ab.

Namespace:  Microsoft.WindowsCE.Forms
Assembly:  Microsoft.WindowsCE.Forms (in Microsoft.WindowsCE.Forms.dll)

Syntax

'Declaration
Public ReadOnly Property InputMethods As InputPanel..::..InputMethodCollection
    Get
'Usage
Dim instance As InputPanel
Dim value As InputPanel..::..InputMethodCollection

value = instance.InputMethods
public InputPanel..::..InputMethodCollection InputMethods { get; }
public:
property InputPanel..::..InputMethodCollection^ InputMethods {
    InputPanel..::..InputMethodCollection^ get ();
}
member InputMethods : InputPanel..::..InputMethodCollection

Eigenschaftswert

Typ: Microsoft.WindowsCE.Forms.InputPanel.InputMethodCollection
Ein Objekt, das eine Auflistung von Eingabemethoden darstellt.

Hinweise

Diese Auflistung enthält alle auf dem Gerät installierten Eingabemethoden.

Beispiele

Im folgende Beispiel füllt ein Listenfeld mit den verfügbaren Eingabemethoden.In diesem Beispiel ist Teil eines umfangreicheren Beispiels für die InputPanel.InputMethodCollection-Klasse bereitgestellt wird.

PrivateSub GetInputMethods()
    Me.ListBox1.Items.Clear()

    ' Get the InputMethods collection and    ' add each method to the list box.Dim im As InputMethod
    ForEach im In  InputPanel1.InputMethods
       Me.ListBox1.Items.Add(im.Name)
    Next im
EndSub
// Get the InputMethods collection and// add each method to the list box.foreach (InputMethod im in ip.InputMethods)
{
 this.listBox1.Items.Add(im.Name);
}

.NET Framework-Sicherheit

Plattformen

Windows CE, Windows Mobile für Pocket PC

Die .NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET framework.

Versionsinformationen

.NET Compact Framework

Unterstützt in: 3.5, 2.0

Siehe auch

Referenz

InputPanel Klasse

Member InputPanel

Microsoft.WindowsCE.Forms-Namespace