Is there any way to retrieve a control\'s position in a form, when the control may be inside other controls (like Panels)?
The control\'s Left and Top properties giv
private Point FindLocation(Control ctrl) { if (ctrl.Parent is Form) return ctrl.Location; else { Point p = FindLocation(ctrl.Parent); p.X += ctrl.Location.X; p.Y += ctrl.Location.Y; return p; } }