If I create a new WinForms application, I can see that that Form1 inherits from Form. I thought that Form is a control. MSDN says that all controls inherit from UserControl class. Also how it is?
EDIT: Also do all Forms inherit from base Form class?
If I create a new WinForms application, I can see that that Form1 inherits
Share
FormandUserControlboth derive separately fromContainerControl, which derives fromScrollableControl, which derives fromControl.