RichEditBox.IsHandwritingViewEnabledProperty 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
标识 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
属性值
IsHandwritingViewEnabled 依赖属性的标识符。
Windows 要求
设备系列 |
Windows 10, version 1803 (在 10.0.17134.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)
|
示例
在此示例中,我们通过将 RichEditBox 控件的 IsHandwritingViewEnabled 属性设置为 false 来禁用手写视图。 所有支持手写视图的文本控件都支持一个类似的属性。
<RIchEditBox Name="SampleTextBox"
Height="50" Width="500"
FontSize="36" FontFamily="Segoe UI"
PlaceholderText="Try taping with your pen"
IsHandwritingViewEnabled="False">
</RichEditBox>