Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

ListView Group Sorter

0.00/5 (No votes)
17 Aug 2009 1  
An easy to use ListView group sorter (very simple).
Sorted Ascending

Sorted Descending

Desc.jpg

Introduction

The code descried here enables you to sort ListView Groups, ascending or descending.

Background

I needed a "quick and dirty" solution to sort my Groups in a ListView. So I came up with this very very simple solution.

Using the code

Just cast your ListView into my listview wrapper and call SortGroup(bool).

Like this where listView1 is your own ListView to be sorted:

((ListViewGroupSorter)listView1).SortGroups(true);  //Ascending...
((ListViewGroupSorter)listView1).SortGroups(false); //Descending...

The ListViewGroupHeaderSorter Class

public class ListViewGroupHeaderSorter : IComparer<ListViewGroup>
{
    private bool _ascending = true;
    public ListViewGroupHeaderSorter(bool ascending)
    {
        _ascending = ascending;
    }

#region IComparer<ListViewGroup> Members

    public int Compare(ListViewGroup x, ListViewGroup y)
    {
    if (_ascending)
        return string.Compare(((ListViewGroup)x).Header, ((ListViewGroup)y).Header);
    else
        return string.Compare(((ListViewGroup)y).Header, ((ListViewGroup)x).Header);
    }
#endregion
}

The ListViewGroupHeaderSorter Class

public class ListViewGroupSorter
{
    internal ListView _listview;

    public static bool operator ==(ListView listview, ListViewGroupSorter sorter)
    {
        return listview == sorter._listview;
    }
    public static bool operator !=(ListView listview, ListViewGroupSorter sorter)
    {
        return listview != sorter._listview;
    }

    public static implicit operator ListView(ListViewGroupSorter sorter)
    {
        return sorter._listview;
    }
    public static implicit operator ListViewGroupSorter(ListView listview)
    {
        return new ListViewGroupSorter(listview);
    }

    internal ListViewGroupSorter(ListView listview)
    {
        _listview = listview;
    }

    public void SortGroups(bool ascending)
    {
        _listview.BeginUpdate();
        List<listviewgroup> lvgs = new List<listviewgroup>();
        foreach (ListViewGroup lvg in _listview.Groups)
            lvgs.Add(lvg);
        _listview.Groups.Clear();
        lvgs.Sort(new ListViewGroupHeaderSorter(ascending));
        _listview.Groups.AddRange(lvgs.ToArray());
        _listview.EndUpdate();
    }

    #region overridden methods

    public override bool Equals(object obj)
    {
        return _listview.Equals(obj);
    }

    public override int GetHashCode()
    {
        return _listview.GetHashCode();
    }

    public override string ToString()
    {
        return _listview.ToString();
    }

    #endregion
}

History

  • 17. Aug. 2009 - First version posted.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here