自定义控件继承树

FlowGroupEditField_ascx
-UserControl
--TemplateControl
---Control
----Object

     void  Page_Load( object  sender, EventArgs e)
    
{
        
string c = "";
        Type t 
= this.GetType();
        
for (int i = 0; i < 20; i++)
        
{
            Response.Write(
"<br>" + c + t.Name);
            c 
+= "-";
            t 
= t.BaseType;
            
if (t == nullbreak;
        }

        
    }

你可能感兴趣的:(自定义控件)