class DerivedClass: BaseClass { }MSDN
ms-help://MS.VSCC/MS.MSDNVS.2052/csref/html/vcrefTheClassType.htm

解决方案 »

  1.   

    可不可EMAIL给我[email protected]
      

  2.   

    继承的例子:
    public class BaseClass
        {
            public BaseClass()
            {
                
            }
            public static bool MethodOne()
            {
                throw new ApplicationException("
    Should have hidden this.");
            }
        }    public class DerivedClass : BaseClass
        {        public static new bool MethodOne()
            {
                return true;
            }
        }
      

  3.   

    一个CLASS我知道可以继承,而FORM也是一个CLASS
    我知道CLass如何继承,不过还是不知道FORM继承(因为FORM上的控件不会一起继承下来,WHY?)
    应该如何做才可以将FORM 里面的事件与可视控件继承?