Drawing Lines in WPF - DrawingVisual Performance Issue

846 Views Asked by At

I have implemented two versions of line drawing code - one using WPF shapes (lines), and another using StreamGeometry and DrawingVisual.

DrawingVisual should be faster, but I have found the exact opposite. The initial draw, and subsequent resizing of the host window containing a DrawingVisual object is very slow and jerky, much worse than the WPF lines example.

What am I doing wrong?

WPF Lines Code:

    Dim Rand As New Random

    For i As Integer = 1 To 1000

        Dim Line As New Line
        Line.X1 = Rand.NextDouble * 500
        Line.X2 = Rand.NextDouble * 500
        Line.Y1 = Rand.NextDouble * 500
        Line.Y2 = Rand.NextDouble * 500
        Line.Stroke = Brushes.Black
        Line.StrokeThickness = 0.25
        BaseGrid.Children.Add(Line)

    Next

DrawingVisual Code:

The drawing visual host control:

Public Class VisualHost

    Inherits FrameworkElement

    Dim Visual As New DrawingVisual()
    Dim Context As DrawingContext
    Dim Pen As Pen

    Dim rand As New Random

    Public Sub New()

        Pen = New Pen(Brushes.Black, 0.25)
        Pen.Freeze()

        AddVisualChild(Visual)

    End Sub

    Public Sub Draw()

        Dim Geometry As New StreamGeometry()

        Using GeometryContext As StreamGeometryContext = Geometry.Open()

            GeometryContext.BeginFigure(New Point(rand.NextDouble * 500, rand.NextDouble * 500), False, False)

            For i As Integer = 1 To 1000

                GeometryContext.LineTo(New Point(rand.NextDouble * 500, rand.NextDouble * 500), True, True)

            Next

        End Using

        Geometry.Freeze()

        Using Context = Visual.RenderOpen()
            Context.DrawGeometry(Nothing, Pen, Geometry)
        End Using

    End Sub

    Protected Overrides ReadOnly Property VisualChildrenCount() As Integer
        Get
            Return 1
        End Get
    End Property

    Protected Overrides Function GetVisualChild(index As Integer) As Visual
        Return Visual
    End Function

End Class

Assigning VisualHost to grid:

Private Host As New VisualHost
BaseGrid.Children.Add(Host)
Host.Draw()
0

There are 0 best solutions below