Click here to Skip to main content
15,897,518 members
Articles / Desktop Programming / WPF

WPF ListView which can do - Sorting, Filtering, Totals, Cell-focus, Editing, and More

Rate me:
Please Sign up or sign in to vote.
4.89/5 (65 votes)
21 Apr 2010CPOL6 min read 279.7K   11.4K   172  
Enhanced WPF ListView that is almost a DataGrid
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Media;
using System.Windows.Controls;

namespace DsxGridCtrl
{
    public static class StyleExtensions
    {
        public static object GetStylePropertyValue<T>(this Style preferedStyle, String propertyName, Style fallbackStyle, object defaultValue)
        {
            object _result = null;

            if (preferedStyle != null)
            {
                _result = preferedStyle.GetStylePropertyValue<T>(propertyName, null);
            }
            if (_result != null)
            {
                return _result;
            }
            return fallbackStyle.GetStylePropertyValue<T>(propertyName, defaultValue);
        }

        public static object GetStylePropertyValue<T>(this Style styleReference, String propertyName, object defaultValue)
        {
            if (styleReference != null)
            {
                foreach (Setter _setter in styleReference.Setters)
                {
                    if (_setter.Property.Name.Equals(propertyName))
                    {
                        return (T)_setter.Value;
                    }
                }
            }
            return defaultValue;
        }

        public static Setter GetStyleSetter(this Style preferredStyle, DependencyProperty property, Style fallbackStyle)
        {
            Setter _result = null;

            if (preferredStyle != null)
            {
                _result = preferredStyle.GetStyleSetter(property);
            }
            if (_result != null)
            {
                return _result;
            }
            return fallbackStyle.GetStyleSetter(property);
        }

        public static Setter GetStyleSetter(this Style styleReference, DependencyProperty property)
        {
            if (styleReference != null)
            {
                foreach (Setter _setter in styleReference.Setters)
                {
                    if (_setter.Property.Name.Equals(property))
                    {
                        return _setter;
                    }
                }
            }
            return null;
        }

    }
}

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
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions