Click here to Skip to main content
15,881,380 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.9K   8.4K   62  
Allows auto filtering functionality for DataGrid columns.
using System;
using System.Reflection;

namespace Stepi.Collections.Filters
{
    /// <summary>
    /// Base class for a filter
    /// </summary>
    public abstract class Filter : IFilter
    {
        private PropertyInfo _propertyInfo;

        /// <summary>
        /// Occurs when the filter has changed and the IsMatch logic has been affected.
        /// </summary>
        public event EventHandler FilteringChanged = delegate { };

        /// <summary>
        /// Initializes a new instance of the <see cref="Filter"/> class.
        /// </summary>
        /// <param name="propertyInfo">The property info.</param>
        protected Filter(PropertyInfo propertyInfo)
        {
            if (propertyInfo == null)
            {
                throw new ArgumentNullException("propertyInfo");
            }
            _propertyInfo = propertyInfo;
        }

        /// <summary>
        /// Raises the filtering changed event.
        /// </summary>
        protected void RaiseFilteringChanged()
        {
            FilteringChanged(this, EventArgs.Empty);
        }

        /// <summary>
        /// Gets the property info whose property name is filtered
        /// </summary>
        /// <value>The property info.</value>
        public PropertyInfo PropertyInfo
        {
            get { return _propertyInfo; }
        }

        /// <summary>
        /// Determines whether the specified target is a match.
        /// </summary>
        /// <param name="target">The target.</param>
        /// <returns>
        /// 	<c>true</c> if the specified target is a match; otherwise, <c>false</c>.
        /// </returns>
        public abstract bool IsMatch(object target);
    }
}

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