Click here to Skip to main content
Click here to Skip to main content

ListView Group Sorter

By , 17 Aug 2009
 
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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Paw Jershauge
Software Developer
Denmark Denmark
Member

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130513.1 | Last Updated 17 Aug 2009
Article Copyright 2009 by Paw Jershauge
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid