I need to Draw (using System.Windows.Media.DrawingContext
) a "L
" in WPF.
What is the optimal way to proceed?
Draw 2 lines? Draw a PolyLineSegment
? (not sure how)
drawContext.DrawLine(myPen, topLeft, New Point(topLeft.X + 5, topLeft.Y))
drawContext.DrawLine(myPen, topLeft, New Point(topLeft.X, topLeft.Y + 5))
Actually, I need to surround a label with visible corners "L"-like...
I need to draw, not to use Templates or Decorators.