InputMethod.CanShowConfigurationUI Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob diese Eingabemethode die Benutzeroberfläche (Ui) der Konfiguration anzeigen kann.

public:
 property bool CanShowConfigurationUI { bool get(); };
public bool CanShowConfigurationUI { get; }
member this.CanShowConfigurationUI : bool
Public ReadOnly Property CanShowConfigurationUI As Boolean

Eigenschaftswert

true , wenn die Konfigurations-Benutzeroberfläche angezeigt werden kann; falseandernfalls .

Diese Eigenschaft hat keinen Standardwert.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie die CanShowConfigurationUI -Eigenschaft verwendet wird, um zu bestimmen, ob die Konfigurationsbenutzeroberfläche sichtbar ist.

InputMethod.SetPreferredImeState(myTextBox, InputMethodState.On);
InputMethod.Current.ImeSentenceMode = ImeSentenceModeValues.Automatic;
InputMethod.Current.HandwritingState = InputMethodState.On;
InputMethod.Current.SpeechMode = SpeechMode.Dictation;
InputScope myInputScope = new InputScope();
myInputScope.RegularExpression = "W|P|F";
InputMethod.SetInputScope(myTextBox, myInputScope);
tb6.Text = "Configuration UI Available?: " + InputMethod.Current.CanShowConfigurationUI.ToString();
InputMethod.SetPreferredImeState(myTextBox, InputMethodState.On)
InputMethod.Current.ImeSentenceMode = ImeSentenceModeValues.Automatic
InputMethod.Current.HandwritingState = InputMethodState.On
InputMethod.Current.SpeechMode = SpeechMode.Dictation
Dim myInputScope As New InputScope()
myInputScope.RegularExpression = "W|P|F"
InputMethod.SetInputScope(myTextBox, myInputScope)
tb6.Text = "Configuration UI Available?: " & InputMethod.Current.CanShowConfigurationUI.ToString()

Gilt für:

Weitere Informationen