I am drawing a line to a Graphics
object in Windows CE using C#.NET 3.5.
The code I am using looks like this:
e.Graphics.DrawLine(new Pen(Color.FromArgb(11, 118, 200), 2), x1, y1, x2, y2);
This works however looks terrible due to jaggies etc. Is there anyway I can draw anti aliased lines?
From what I can tell the Graphics
object doesn't support this natively but is there anyway to "cheat" this effect using some trickery?