📄 ihierarchyinterfaces.cs
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -