Stroke.DrawCore(DrawingContext, DrawingAttributes) Метод

Определение

Воспроизводит Stroke для заданного DrawingContext с использованием указанного DrawingAttributes.

protected virtual void DrawCore (System.Windows.Media.DrawingContext drawingContext, System.Windows.Ink.DrawingAttributes drawingAttributes);

Параметры

drawingContext
DrawingContext

Объект DrawingContext для отображения росчерка.

drawingAttributes
DrawingAttributes

Объект DrawingAttributes, определяющий атрибуты отображаемого росчерка.

Примеры

В следующем примере показано, как нарисовать круг на каждом 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);
    }
}

Комментарии

Переопределите DrawCore метод для выполнения пользовательского рисования при наследовании Stroke от класса.

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

Өнім Нұсқалар
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7