示例
今天需要通过Excel来创建一个TreeView,并且建立相应的节点。
我们先建一个自定义类,继承了IComparable接口,可以很方便的比较大小
public class WbsNode : IComparable<WbsNode>
{
public string WBS {
get; set; }
public string TaskName {
get; set; }
//此处为比较WBS用,为后期做准备
public int CompareTo(WbsNode other)
{
if (other == null)
{
return 1;
}
int.TryParse(this.WBS.Replace<