Click here to Skip to main content
15,891,933 members
Articles / Desktop Programming / XAML

Search Selectable Virtual List

Rate me:
Please Sign up or sign in to vote.
5.00/5 (7 votes)
3 Jan 2013CPOL5 min read 31.5K   1K   15  
This article is the part 3 of the data display Performance Optimization series. It talks about performing multiple searches against the virtual list.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace  SearchableSelectableVirtualList
{
	public interface IObjectGenerator<T>
	{
		/// <summary>
		/// 	Returns the number of items in the collection.
		/// </summary>
		int Count { get; }

		/// <summary>
		/// 	Generate the item that is located on the specified index.
		/// </summary>
		/// <remarks>
		/// 	This method is only be called once per index.
		/// </remarks>
		/// <param name = "index">Index of the items that must be generated.</param>
		/// <returns>Fresh new instance.</returns>
		T CreateObject(int index);

		int IndexOf(T item);
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Canada Canada
I am a passionated software developer / engineer with strong desire to develop in a simple, fast, beautiful way with the skillset such as simple design, refactoring, TDD. i worked in J2EE for about 5 years, now i work as a .NET devleoper.

Comments and Discussions