示例#1
0
		public abstract void PopulateTree (Tree tree);
示例#2
0
		//
		// Called at shutdown time after the tree has been populated to perform
		// any fixups or final tasks.
		//
		public abstract void CloseTree (HelpSource hs, Tree tree);
示例#3
0
文件: Node.cs 项目: james1ewis/mono
 internal Node(Tree tree, string caption, string element)
 {
     this.tree    = tree;
     this.caption = caption;
     this.element = element;
 }