TextBox.IsHandwritingViewEnabled 속성

정의

사용자가 필기 보기에 텍스트를 입력할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool IsHandwritingViewEnabled { bool get(); void set(bool value); };
bool IsHandwritingViewEnabled();

void IsHandwritingViewEnabled(bool value);
public bool IsHandwritingViewEnabled { get; set; }
var boolean = textBox.isHandwritingViewEnabled;
textBox.isHandwritingViewEnabled = boolean;
Public Property IsHandwritingViewEnabled As Boolean

속성 값

Boolean

bool

true 이면 사용자가 필기 보기에 텍스트를 입력할 수 있습니다. 그렇지 않으면 false입니다.

Windows 요구 사항

디바이스 패밀리
Windows 10, version 1803 (10.0.17134.0에서 도입되었습니다.)
API contract
Windows.Foundation.UniversalApiContract (v6.0에서 도입되었습니다.)

예제

이 예에서는 TextBox 컨트롤의 IsHandwritingViewEnabled 속성을 false로 설정하여 필기 보기를 사용하지 않겠습니다. 필기 보기를 지원하는 모든 텍스트 컨트롤은 비슷한 속성을 지원합니다. ​

<TextBox Name="SampleTextBox"​
    Height="50" Width="500" ​
    FontSize="36" FontFamily="Segoe UI" ​
    PlaceholderText="Try taping with your pen" ​
    IsHandwritingViewEnabled="False">​
</TextBox>​

설명

사용자가 Windows 펜을 사용하여 텍스트 입력 상자를 탭하면 별도의 입력판을 열지 않고도 펜으로 직접 쓸 수 있도록 텍스트 상자가 변환됩니다.

잉크와 추천 항목을 제공하는 텍스트 상자

적용 대상

추가 정보