Stroke.StylusPoints Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Vrátí perasové body Stroke.
public:
property System::Windows::Input::StylusPointCollection ^ StylusPoints { System::Windows::Input::StylusPointCollection ^ get(); void set(System::Windows::Input::StylusPointCollection ^ value); };
public System.Windows.Input.StylusPointCollection StylusPoints { get; set; }
member this.StylusPoints : System.Windows.Input.StylusPointCollection with get, set
Public Property StylusPoints As StylusPointCollection
Hodnota vlastnosti
Hodnota StylusPointCollection , která obsahuje perasové body, které představují aktuální Stroke.
Příklady
Následující příklad je součástí přepsání Stroke , které nakreslí kruh u každého StylusPoint.
FitToCurve Pokud je vlastnost nastavená na true
, GetBezierStylusPoints použije se k získání perových bodů. V opačném případě se StylusPoints použije vlastnost.
protected override void DrawCore(DrawingContext context, DrawingAttributes overrides)
{
// Draw the stroke. Calling base.DrawCore accomplishes the same thing.
Geometry geometry = GetGeometry(overrides);
context.DrawGeometry(new SolidColorBrush(overrides.Color), null, geometry);
StylusPointCollection points;
// Get the stylus points used to draw the stroke. The points used depends on
// the value of FitToCurve.
if (this.DrawingAttributes.FitToCurve)
{
points = this.GetBezierStylusPoints();
}
else
{
points = this.StylusPoints;
}
// Draw a circle at each stylus point.
foreach (StylusPoint p in points)
{
context.DrawEllipse(null, new Pen(Brushes.Black, 1), (Point)p, 5, 5);
}
}
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
Poznámky
Chcete-li získat pero bodů, které se používají, když FitToCurve je vlastnost DrawingAttributes vlastnosti nastavena na true
hodnotu , použijte metodu GetBezierStylusPoints .
Poznámka
Vlastnost StylusPointCollection přiřazená StylusPoints musí obsahovat alespoň jednu StylusPoint vlastnost. Pokud se pokusíte přiřadit prázdné StylusPointCollection objektu StylusPointsnebo odebrat všechny StylusPoint objekty z StylusPoints, dojde k výjimce.