最近做Winform项目需要用到类似ComboBox的TreeView控件. 虽然各种第三方控件很多,但是存在各种版本不兼容问题.所以自己写了个简单的ComboTreeView控件. 下图是实现效果: 目前实现的比较简单,能满足我项目中的需求. 此处是项目中的代码简化后的版本,供大家参考. using System; using System.Collections.Generic; using System.Windows.Forms; namespace CustomControl.Tree…
#region TreeView树形显示磁盘下文件夹 /// <summary> /// IconIndexs类 对应ImageList中5张图片的序列 /// </summary> private class IconIndexes { public const int MyComputer = 0; //我的电脑 public const int ClosedFolder = 1; //文件夹关闭 public const int OpenFolder = 2; //文件夹打开…