Form1 is declared as a class, but since it inherits a bunch of stuff. I was wondering what it inherits from?
But, if it inherits from System.Windows.Forms.Form, why would it have a property called “parent” from System.Web.UI.Control?
How does this all work?
P.S. Can I refer to the class Form1 in a full path way? (ex. System. sth…..)
This is full inheritance hierarchy form your
Form1class. You can see those things in msdn. I suggest you start with article about Form class.