Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Form1 被声明为一个类,但是因为它继承了一堆东西。我想知道它继承了什么?
但是,如果它继承自 System.Windows.Forms.Form,为什么它会有一个来自 System.Web.UI.Control 的名为“parent”的属性?
这一切如何运作?
PS我可以以完整路径的方式引用Form1类吗?(例如系统。……)
Form1这是您的类的完整继承层次结构。你可以在msdn中看到这些东西。我建议您从有关Form class的文章开始。
Form1