Click here to Skip to main content
15,879,239 members
Articles / Desktop Programming / WPF

Auto-filter for Microsoft WPF DataGrid

Rate me:
Please Sign up or sign in to vote.
4.81/5 (25 votes)
29 Jan 2009Eclipse3 min read 225.8K   8.4K   62  
Allows auto filtering functionality for DataGrid columns.
using System;
using System.ComponentModel;

namespace Stepi.Collections.Filters
{
    /// <summary>
    /// Defines the contract for a range filter
    /// </summary>
    /// <typeparam name="T"></typeparam>
    public interface IRangeFilter<T> : IFilter<T>, INotifyPropertyChanged
        where T :IComparable
    {
        /// <summary>
        /// Gets or sets the minimum value.
        /// </summary>
        /// <value>From.</value>
        T From
        {
            get;
            set;
        }

        /// <summary>
        /// Gets or sets he maximum value.
        /// </summary>
        /// <value>To.</value>
        T To
        {
            get;
            set;
        }
    }

    /// <summary>
    /// Defines the contract for a compare filter
    /// </summary>
    /// <typeparam name="T"></typeparam>
    public interface ICompareFilter<T> : IFilter<T>
        where T : IComparable
    {
        /// <summary>
        /// Gets or sets the value used in the comparison.
        /// </summary>
        /// <value>The compare to.</value>
        T CompareTo
        {
            get;
            set;
        }
    }
}

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 Eclipse Public License 1.0


Written By
Software Developer (Senior) Lab49
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions