InkCanvas.DefaultStylusPointDescription 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
InkCanvas의 스타일러스 포인트 설정을 가져오거나 설정합니다.
public:
property System::Windows::Input::StylusPointDescription ^ DefaultStylusPointDescription { System::Windows::Input::StylusPointDescription ^ get(); void set(System::Windows::Input::StylusPointDescription ^ value); };
public System.Windows.Input.StylusPointDescription DefaultStylusPointDescription { get; set; }
member this.DefaultStylusPointDescription : System.Windows.Input.StylusPointDescription with get, set
Public Property DefaultStylusPointDescription As StylusPointDescription
속성 값
InkCanvas의 스타일러스 포인트 설명입니다.
예제
다음 예에서는 에 있는 스트로크의 스타일러스 포인트에 InkCanvas , , YNormalPressure및 TipButton 속성이 포함되도록 을 X설정합니다DefaultStylusPointDescription.
참고
다음에 DefaultStylusPointDescription 추가 InkCanvas 되는 스트로크만 이 추가 속성을 포함하도록 설정됩니다.
inkCanvas1.DefaultStylusPointDescription = new StylusPointDescription(
new StylusPointPropertyInfo[] {
new StylusPointPropertyInfo(StylusPointProperties.X),
new StylusPointPropertyInfo(StylusPointProperties.Y),
new StylusPointPropertyInfo(StylusPointProperties.NormalPressure),
new StylusPointPropertyInfo(StylusPointProperties.TipButton)});
inkCanvas1.DefaultStylusPointDescription = New StylusPointDescription _
(New StylusPointPropertyInfo() _
{New StylusPointPropertyInfo(StylusPointProperties.X), _
New StylusPointPropertyInfo(StylusPointProperties.Y), _
New StylusPointPropertyInfo(StylusPointProperties.NormalPressure), _
New StylusPointPropertyInfo(StylusPointProperties.TipButton)})
설명
기본적으로 는 InkCanvas 스트로크에 X속하는 각 StylusPoint 에 대한 , Y및 NormalPressure 속성만 저장합니다. DefaultStylusPointDescription 속성을 사용하여 의 InkCanvas스트로크를 구성하는 지점에 대한 추가 정보를 저장할 수 있습니다. 이 속성을 설정하면 속성이 설정된 후에 수행되는 새 스트로크에만 영향을 줍니다.
XAML 텍스트 사용
XAML에서이 속성을 사용할 수 없습니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET