⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shapecollection.cs

📁 英语句子自然语言处理统计分析例子 Statistical parsing of English sentences Shows how to generate parse trees for
💻 CS
字号:
using System;
using System.Collections;
namespace Netron.Lithium
{
	/// <summary>
	/// STC of shapes
	/// </summary>
	public class ShapeCollection: CollectionBase
	{
		/// <summary>
		/// Occurse when a shape is added to the collection
		/// </summary>
		public event ShapeData OnShapeAdded;
		/// <summary>
		/// Adds a shape to the collection
		/// </summary>
		/// <param name="shape">a ShapeBase object</param>
		/// <returns>the index of the added object in the collection</returns>
		public int Add(ShapeBase shape)
		{	
			int newid = this.InnerList.Add(shape);
			if(OnShapeAdded!=null)
				OnShapeAdded(shape);
			return newid;
		}

		/// <summary>
		/// integer indexer
		/// </summary>
		public ShapeBase this[int index]
		{
			get{return this.InnerList[index] as ShapeBase;}
		}
		/// <summary>
		/// string indexer
		/// Gets the connection (if any) from the collection with the given UID
		/// </summary>
		public ShapeBase this[string uid]
		{
			get{
				for(int k=0;k<InnerList.Count; k++)
					if(this[k].UID.ToString()==uid) return this[k];

				return null;
				}
		}
		/// <summary>
		/// Removes the connection from the collection
		/// </summary>
		/// <param name="shape">a ShapeBase object</param>
		public void Remove(ShapeBase shape)
		{
			this.InnerList.Remove(shape);
		}


	}


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -