InputMethod.CanShowConfigurationUI Propriété

Définition

Obtient une valeur qui indique si cette méthode d’entrée peut afficher ou non l’interface utilisateur de configuration.

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

Valeur de propriété

true si l’interface utilisateur de configuration peut être affichée ; sinon, false.

Cette propriété n’a aucune valeur par défaut.

Exemples

L’exemple suivant montre comment utiliser la CanShowConfigurationUI propriété pour déterminer si l’interface utilisateur de configuration est visible.

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()

S’applique à

Voir aussi