I want the origin to be at the center of my window.
______________ | ^ | | | | | o----->| | | |____________|
.NET wants it to be in the top left hand corner.
_____________> | | | | | | | | V____________|
Dot net and I are trying to get along..
Does anyone know how to do this in C# just using the Graphics object?
Graphics.TranslateTransform doesn't do it since it leaves the coordinates flipped upside down. Combining this Graphics.ScaleTransform(1,-1) isn't satisfactory either since that makes text appear upside down.