StylusPointCollection Class
.NET Framework 3.0
Contains a collection of StylusPoint objects.
Namespace: System.Windows.Input
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
A Stroke has a StylusPointCollection that contains the StylusPoint objects collected from a stylus and digitizer. You can use the StylusPointCollection to customize the Stroke.
The following example overrides to Stroke.DrawCore method to draw a circle at each StylusPoint of a Stroke. If the FitToCurve property is set to true, the GetBezierStylusPoints returns the stylus points. Otherwise, StylusPoints returns the stylus points.
Protected Overrides Sub DrawCore(ByVal context As DrawingContext, _ ByVal overridedAttributes As DrawingAttributes) ' Draw the stroke. Calling base.DrawCore accomplishes the same thing. Dim geometry As Geometry = GetGeometry(overridedAttributes) context.DrawGeometry(New SolidColorBrush(overridedAttributes.Color), Nothing, geometry) Dim points As StylusPointCollection ' Get the stylus points used to draw the stroke. The points used depends on ' the value of FitToCurve. If Me.DrawingAttributes.FitToCurve Then points = Me.GetBezierStylusPoints() Else points = Me.StylusPoints End If ' Draw a circle at each stylus point. Dim p As StylusPoint For Each p In points context.DrawEllipse(Nothing, New Pen(Brushes.Black, 1), CType(p, Point), 5, 5) Next p End Sub 'DrawCore
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: