| David M Morton wrote: |
|
You want to change the orientation of the x-axis and y-axis of the forms designer? Unfortunately, this can't be done. It is always in the top left, as all the controls expect the values passed to them will refer to the top left.
| |
True. Quite true. But one could always write a method or a class that translates user coordinates that the OP wants, into physical coordinates that windows uses.
public
System.Drawing.Rectangle Bounds { get; }
Member of
System.Windows.Forms.Screen
Summary:
Gets the bounds of the display.
Returns:
A System.Drawing.Rectangle, representing the bounds of the display.
That might be a good place to start from.
Rudedog