C# winformusing System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.ComponentModel;namespace FolderTree
{
    public class FolderTree:System.Windows.Forms.TreeView 
    {
        string rootFolder = "";
        bool showFiles = true;
        bool inInit = false;
        public FolderTree()
        {         
        }
        。。
        
    }
}
在网上找一些资料,说是要继承UserControl,但是不能继承多个类,不知道这个问题怎么解决
这个例子我是照书里面做的