Click here to Skip to main content
15,884,099 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 278K   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.Data;
using System.Globalization;
using System.Windows;
using System.ComponentModel;
using System.Windows.Media;
using System.Windows.Controls;

namespace DsxGridCtrl
{
    public class DsxFilterStyleConverter : IValueConverter
    {
        private static ResourceDictionary sStyleResources { get; set; }

        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            if (parameter != null)
            {
                object _result      = null;
                string _propertyName = parameter.ToString();

                _result = StyleHelper.FindStyleValue(value, _propertyName, DsxDataGrid.FilterStyleProperty, DsxColumn.FilterStyleProperty);
                    
                if (_result != null)
                {
                    return _result;
                }

                // defaults

                if (sStyleResources == null)
                {
                    sStyleResources         = new ResourceDictionary();
                    sStyleResources.Source  = new Uri("/DsxGridCtrl;component/Themes/Styles.xaml", UriKind.Relative);
                }

                Style _filterStyle = sStyleResources["dsxFilterStyleGray"] as Style;

                if (_filterStyle == null)
                {
                    throw new Exception("if 'dsxFilterStyleGray' is not present in Styles.xaml, a FilterStyle must be set at design time");
                }

                if      (_propertyName.Equals(Control           .BackgroundProperty         .Name))         return _filterStyle.GetStylePropertyValue<Brush>                ("Background",          Brushes.LightGray);
                else if (_propertyName.Equals(Control           .ForegroundProperty         .Name))         return _filterStyle.GetStylePropertyValue<Brush>                ("Foreground",          SystemColors.ControlTextBrush);
                else if (_propertyName.Equals(Border            .BorderBrushProperty        .Name))         return _filterStyle.GetStylePropertyValue<Brush>                ("BorderBrush",         Brushes.Silver);
                else if (_propertyName.Equals(FrameworkElement  .HorizontalAlignmentProperty.Name))         return _filterStyle.GetStylePropertyValue<HorizontalAlignment>  ("HorizontalAlignment", HorizontalAlignment.Left);
                else if (_propertyName.Equals(FrameworkElement  .VerticalAlignmentProperty  .Name))         return _filterStyle.GetStylePropertyValue<VerticalAlignment>    ("VerticalAlignment",   VerticalAlignment.Center);
                else if (_propertyName.Equals(Border            .CornerRadiusProperty       .Name))         return _filterStyle.GetStylePropertyValue<CornerRadius>         ("CornerRadius",        new CornerRadius(2,2,2,2));
                else if (_propertyName.Equals(Border            .BorderThicknessProperty    .Name))         return _filterStyle.GetStylePropertyValue<Thickness>            ("BorderThickness",     new Thickness   (1,1,1,1));
                else if (_propertyName.Equals(Control           .PaddingProperty            .Name))         return _filterStyle.GetStylePropertyValue<Thickness>            ("Padding",             new Thickness   (6,0,6,0));
                else if (_propertyName.Equals(FrameworkElement  .MarginProperty             .Name))         return _filterStyle.GetStylePropertyValue<Thickness>            ("Margin",              new Thickness   (1,0,1,0));

                else if (_propertyName.Equals(DsxFilterStyle    .CriteriaBackgroundProperty.Name))          return _filterStyle.GetStylePropertyValue<Brush>                ("Background",          Brushes.Snow);
            }

            return null;
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotSupportedException();
        }
    }
}

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