65.9K
CodeProject 正在变化。 阅读更多。
Home

带事件的列表

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.29/5 (11投票s)

2008年12月6日

CPOL
viewsIcon

50984

downloadIcon

324

一个扩展的列表,当列表项计数发生变化时会触发事件

引言

List<T> 在列表项数量发生变化时不会提供任何事件。本文提供了一个类,当元素数量发生变化时会通过事件进行通知。

该类提供了一种基本的方法。如果需要,可以添加更多成员。

Using the Code

一个示例将展示该类的用法

using System;
using gfoidl.Tools;

namespace ConsoleApplication1
{
	class Program
	{
		static void Main()
		{
			gfList<int> list = new gfList<int>();
			list.CountChanged += 
				new EventHandler<gfList<int>.ListEventArgs>
					(list_CountChanged);

			list.Add(1);
			list.AddRange(new int[] { 2, 3, 4, 5 });
			list.Remove(3);
			list.Clear();

			Console.ReadKey();
		}

		private static void list_CountChanged(
			object sender, 
			gfList<int>.ListEventArgs e)
		{
			Console.WriteLine(e.Count);
		}
	}
}

实现

using System;
using System.Collections.Generic;

namespace gfoidl.Tools
{
	/// <summary>
	/// Extended list with events
	/// </summary>
	/// <typeparam name="T">
	/// The type of the elements
	/// </typeparam>
	public class gfList<T> : List<T>
	{
		#region Event(s)
		public event EventHandler<ListEventArgs> CountChanged;
		#endregion
		//---------------------------------------------------------------
		#region Methods
		/// <summary>
		/// Adds an item
		/// </summary>
		public new void Add(T item)
		{
			base.Add(item);

			// Copy to a temporary variable to be thread-safe (MSDN).
			EventHandler<ListEventArgs> tmp = CountChanged;
			if (tmp != null)
			    tmp(this, new gfList<T>.ListEventArgs(this.Count));
		}
		//------------------------------------------------------------------
		/// <summary>
		/// Adds a range
		/// </summary>
		public new void AddRange(IEnumerable<T> collection)
		{
			base.AddRange(collection);

			// Copy to a temporary variable to be thread-safe (MSDN).
			EventHandler<ListEventArgs> tmp = CountChanged;
			if (tmp != null)
			    tmp(this, new gfList<T>.ListEventArgs(this.Count));
		}
		//------------------------------------------------------------------
		/// <summary>
		/// Clears the list.
		/// </summary>
		public new void Clear()
		{
			base.Clear();

			// Copy to a temporary variable to be thread-safe (MSDN).
			EventHandler<ListEventArgs> tmp = CountChanged;
			if (tmp != null)
			    tmp(this, new gfList<T>.ListEventArgs(this.Count));
		}
		//------------------------------------------------------------------
		/// <summary>
		/// Removes the first matched item.
		/// </summary>
		public new void Remove(T item)
		{
			base.Remove(item);

			// Copy to a temporary variable to be thread-safe (MSDN).
			EventHandler<ListEventArgs> tmp = CountChanged;
			if (tmp != null)
			    tmp(this, new gfList<T>.ListEventArgs(this.Count));
		}
		#endregion
		//------------------------------------------------------------------
		#region Subclasses
		/// <summary>
		/// EventArgs
		/// </summary>
		public class ListEventArgs : EventArgs
		{
			/// <summary>
			/// Number of elements in the list
			/// </summary>
			public int Count { get; set; }
			//----------------------------------------------------------
			public ListEventArgs(int anzahl)
			{
				this.Count = anzahl;
			}
		}
		#endregion
	}
}

历史

  • 2008年12月6日:初始发布
© . All rights reserved.