ihierarchyinterfaces.cs
来自「c#源代码」· CS 代码 · 共 45 行
CS
45 行
/*
* Created by SharpDevelop.
* User: Forstmeier Helmut
* Date: 30.11.2005
* Time: 13:51
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
//ToDo with NET2.0 change this Interface to the one provided by NET2.0
using System;
using System.Collections;
namespace SharpReportCore {
public interface IHierarchicalEnumerable :IEnumerable {
IHierarchyData GetHierarchyData (Object enumeratedItem);
}
public interface IHierarchyData{
IHierarchicalEnumerable GetChildren ();
IHierarchyData GetParent();
bool HasChildren {
get;
}
object Item {
get;
}
string Path {
get;
}
string Type {
get;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?