I have a non-visual component which manages other visual controls.
I need to have a reference to the form that the component is operating on, but i don\'t know how
A improvement of above is:
public static Form ParentForm(this Control ctrl) => ctrl as Form ?? ctrl.FindForm();