本文整理汇总了C#中Com.Aote.ObjectTools.ObjectList.Insert方法的典型用法代码示例。如果您正苦于以下问题:C# ObjectList.Insert方法的具体用法?C# ObjectList.Insert怎么用?C# ObjectList.Insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Com.Aote.ObjectTools.ObjectList
的用法示例。
在下文中一共展示了ObjectList.Insert方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Extend
//展开一个节点,如果展开的子本身是IsOpened,继续把这个字添加到显示列表中
//返回的是当前展开的位置
private int Extend(ObjectList openedList, string childName)
{
int index = openedList.IndexOf(this);
ObjectList ol = (ObjectList)this.GetPropertyValue(childName);
foreach (GeneralObject go in ol)
{
//已经在列表里,不重复增加
if (!openedList.Contains(go))
{
index++;
//子对象的层次为当前对象层次+1
go.Level = this.Level + 1;
openedList.Insert(index, go);
}
//如果子为可以展开,递归展开子,下一个展开的孩子要在展开的子后面添加
if (go.IsOpened)
{
index = go.Extend(openedList, childName);
}
}
return index;
}