I have the following code, that draws a line with a (very) small arrow...
private void Form1_Paint(object sender, PaintEventArgs e)
{
Pen p = new Pen(Color.Black);
p.EndCap = System.Drawing.Drawing2D.LineCap.ArrowAnchor;
e.Graphics.DrawLine(p, 10, 10, 100, 100);
p.Dispose();
}
I want to draw a big arrow (circle, square, triangle etc...), keeping the same line width.
Is it possible?
See Question&Answers more detail:os