InkCanvas.DefaultStylusPointDescription 属性

定义

获取或设置 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 的触笔点说明。

示例

以下示例设置 , DefaultStylusPointDescription 使 上笔划 InkCanvas 的触笔点包含 XYNormalPressureTipButton 属性。

注意

仅将 设置为包含附加属性之后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)})

注解

默认情况下,仅InkCanvasX存储属于笔划的每个StylusPoint的 、 YNormalPressure 属性。 可以使用 DefaultStylusPointDescription 属性来存储有关构成上 InkCanvas笔划的点的其他信息。 设置此属性将仅影响设置属性后进行的新笔划。

XAML 文本用法

不能在 XAML 中使用此属性。

适用于

另请参阅