I have the following code, that draws me a line with a (very) smile 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?