Click here to Skip to main content
15,884,298 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.Controls;
using System.Windows;
using System.Windows.Media;

namespace DsxGridCtrl
{
    public class DsxRowColorConverter : IValueConverter 
    { 
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 
        { 
            Brush _result = Brushes.Transparent;

            if (value == null)
            {
                return _result;
            }
            ListViewItem  _listItem = (ListViewItem)value;
            ListView      _listView = ItemsControl.ItemsControlFromItemContainer(_listItem) as ListView;

            if (_listView.AlternationCount>0)
            {
                int         _index      = (int)_listItem.GetValue(ItemsControl.AlternationIndexProperty);
                DsxDataGrid _dataGrid   = (_listView.View as DsxGridView).ParentDataGrid;

                if (_dataGrid.AlternatingRowBrushes != null && _dataGrid.AlternatingRowBrushes.Count > _index)
                {
                    _result = _dataGrid.AlternatingRowBrushes[_index];
                }
            }

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

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