RichEditBox.IsHandwritingViewEnabledProperty Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Identifie la propriété de dépendance IsHandwritingViewEnabled.
public:
static property DependencyProperty ^ IsHandwritingViewEnabledProperty { DependencyProperty ^ get(); };
static DependencyProperty IsHandwritingViewEnabledProperty();
public static DependencyProperty IsHandwritingViewEnabledProperty { get; }
var dependencyProperty = RichEditBox.isHandwritingViewEnabledProperty;
Public Shared ReadOnly Property IsHandwritingViewEnabledProperty As DependencyProperty
Valeur de propriété
Identificateur de la propriété de dépendance IsHandwritingViewEnabled.
Configuration requise pour Windows
Famille d’appareils |
Windows 10, version 1803 (introduit dans 10.0.17134.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v6.0)
|
Exemples
Dans cet exemple, nous désactivons l’affichage de l’écriture manuscrite en définissant la propriété IsHandwritingViewEnabled du contrôle RichEditBox sur false. Tous les contrôles de texte qui prennent en charge la vue de l’écriture manuscrite acceptent une propriété similaire.
<RIchEditBox Name="SampleTextBox"
Height="50" Width="500"
FontSize="36" FontFamily="Segoe UI"
PlaceholderText="Try taping with your pen"
IsHandwritingViewEnabled="False">
</RichEditBox>