Поделиться через


Stroke.GetGeometry Метод

Определение

Geometry Возвращает текущий Strokeобъект.

Перегрузки

Имя Описание
GetGeometry()

Geometry Возвращает текущий Strokeобъект.

GetGeometry(DrawingAttributes)

Geometry Возвращает текущий Stroke объект с помощью указанногоDrawingAttributes.

GetGeometry()

Geometry Возвращает текущий Strokeобъект.

public:
 System::Windows::Media::Geometry ^ GetGeometry();
public System.Windows.Media.Geometry GetGeometry();
member this.GetGeometry : unit -> System.Windows.Media.Geometry
Public Function GetGeometry () As Geometry

Возвращаемое значение

Объект, Geometry представляющий Strokeобъект .

Комментарии

GetGeometry Используйте метод для настройки PathGeometry фигурыStroke. Рекомендуется кэширование Geometry , чтобы избежать нескольких вызовов GetGeometry , что может повлиять на производительность.

Применяется к

GetGeometry(DrawingAttributes)

Geometry Возвращает текущий Stroke объект с помощью указанногоDrawingAttributes.

public:
 System::Windows::Media::Geometry ^ GetGeometry(System::Windows::Ink::DrawingAttributes ^ drawingAttributes);
public System.Windows.Media.Geometry GetGeometry(System.Windows.Ink.DrawingAttributes drawingAttributes);
member this.GetGeometry : System.Windows.Ink.DrawingAttributes -> System.Windows.Media.Geometry
Public Function GetGeometry (drawingAttributes As DrawingAttributes) As Geometry

Параметры

drawingAttributes
DrawingAttributes

Значение DrawingAttributes , определяющее Geometry значение Stroke.

Возвращаемое значение

Объект, Geometry представляющий Strokeобъект .

Примеры

В следующем примере показано, как нарисовать круг на каждом StylusPoint из Strokeних. FitToCurve Если для свойства задано trueзначение, GetBezierStylusPoints используется для получения точек пера. StylusPoints В противном случае используется свойство.

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

Комментарии

Метод GetGeometry использует Widthсвойства FitToCurveStylusTipHeightи StylusTipTransform свойства drawingAttributes для определения.Geometry Рекомендуется кэширование Geometry , чтобы избежать нескольких вызовов GetGeometry , что может повлиять на производительность.

Применяется к