RectTracker
-
I want to know if someone know how make something like the RectTracker in VC++ but in C#, if you want to know what is a RectTracker, it's the little rectangle that focus on a control and tell you that you can Move,Resize it. anyone know how make this please :confused: Thanks
-
I want to know if someone know how make something like the RectTracker in VC++ but in C#, if you want to know what is a RectTracker, it's the little rectangle that focus on a control and tell you that you can Move,Resize it. anyone know how make this please :confused: Thanks
I belive there are some methods in the ControlPaint class for that... yep, here it is,
ControlPaint.DrawGrabHandle(Graphics g, Rectangle r, bool primary, bool enabled);
. James Simplicity Rules! -
I belive there are some methods in the ControlPaint class for that... yep, here it is,
ControlPaint.DrawGrabHandle(Graphics g, Rectangle r, bool primary, bool enabled);
. James Simplicity Rules!