我新创建的Form1在VB Class层次结构中存在于何处?

时间:2012-08-14 07:05:08

标签: vb.net class hierarchy

Form1被声明为一个类,但因为它继承了一堆东西。我想知道它继承了什么?

但是,如果它继承自System.Windows.Forms.Form,为什么它会有一个名为“parent”的属性来自System.Web.UI.Control?

这一切如何运作?

P.S。我可以以完整路径的方式引用Form1类吗? (例如,系统。......)

1 个答案:

答案 0 :(得分:0)

  • System.Object
  • System.MarshalByRefObject
  • System.ComponentModel.Component
  • System.Windows.Forms.Control的
  • System.Windows.Forms.ScrollableControl
  • System.Windows.Forms.ContainerControl
  • System.Windows.Forms.Form中
  • Some.Your.Namespace.Form1

这是Form1类的完整继承层次结构。你可以在msdn中看到那些东西。我建议你从关于Form class的文章开始。