Click here to Skip to main content
15,867,453 members
Articles / Desktop Programming / WPF

ListView Layout Manager

Rate me:
Please Sign up or sign in to vote.
4.92/5 (68 votes)
27 Sep 2012CPOL4 min read 589.9K   9.1K   265   184
WPF: Customizing ListView/GridView Column-Layout
ListView_layout_manager/ListViewLayoutManager.gif

Introduction

Using a ListViewLayoutManager allows controlling the behavior of the column layout of ListView/GridView controls:

  • Fixed Column: Column with fixed column width
  • Range Column: Column with minimal and/or maximal column width
  • Proportional Column: Column with proportional column width

The Range Column allows to restrict the column width as well as to fill the remaining visible area with the column.

As known from HTML tables or the Grid control, the Proportional Column determines the column widths on a percentage basis. The following factors determine the width of a proportional column:

  • Visibility of the vertical ListView scrollbars
  • Changes of the ListView control width
  • Changes of the width of a non-proportional column

The implementation supports both controlling through XAML or Code Behind. Usage of XAML styles allows a ListViewLayoutManager to be 'attached' to an existing ListView control.

The class ConverterGridColumn offers object specific binding by using the interface IValueConverter. Using the ImageGridViewColumn class allows representing a column as an image/icon using a DataTemplate.

In the article User Settings Applied, I describe how you can persist order and size of the ListView columns.

ListView/GridView Layout in XAML

Fixed Column

The following example shows controlling columns with fixed widths using XAML:

XML
<ListView
  Name="MyListView"
  ctrl:ListViewLayoutManager.Enabled="true">

  <ListView.View>
    <GridView>
      <GridViewColumn
        DisplayMemberBinding="{Binding Path=Name}"

        ctrl:FixedColumn.Width="100"
        Header="Name" />

      <GridViewColumn
        DisplayMemberBinding="{Binding Path=City}"
        ctrl:FixedColumn.Width="300"

        Header="City" />
    </GridView>

  </ListView.View>
</ListView>

Setting the property Enabled binds the ListViewLayoutManager to the ListView control. The property FixedColumn.Width determines the column width and prevents resizing using the mouse.

Proportional Column

The following example shows controlling columns with proportional widths using XAML:

XML
  <ListView
    Name="MyListView"
    ctrl:ListViewLayoutManager.Enabled="true">
    <ListView.View>

      <GridView>

        <GridViewColumn
          DisplayMemberBinding="{Binding Path=Name}"
          ctrl:ProportionalColumn.Width="1"

          Header="Name" />

        <GridViewColumn
          DisplayMemberBinding="{Binding Path=City}"

          ctrl:ProportionalColumn.Width="3"
          Header="City" />
      </GridView>

    </ListView.View>

  </ListView>

Matching the RowDefinition.Width of the Grid control, the value of ProportionalColumn.Width represents the percentage. The scenario above sets the column Name to 25% and the column City to 75% of the total width. Analogous to the fixed columns, resizing with the mouse is disabled.

Range Column

The following example shows controlling ranged columns with minimal/maximal widths using XAML:

XML
<ListView
  Name="MyListView"
  ctrl:ListViewLayoutManager.Enabled="true">
  <ListView.View>

    <GridView>

      <GridViewColumn
        DisplayMemberBinding="{Binding Path=Name}"
        ctrl:RangeColumn.MinWidth="100"
        Width="150"

        Header="Name" />

      <GridViewColumn
        DisplayMemberBinding="{Binding Path=City}"
        ctrl:RangeColumn.MaxWidth="200"
        Width="150"

        Header="City" />

      <GridViewColumn
        DisplayMemberBinding="{Binding Path=Country}"
        Width="100"
        ctrl:RangeColumn.MinWidth="50"

        ctrl:RangeColumn.MaxWidth="150"
        Header="Country" />

      <GridViewColumn
        DisplayMemberBinding="{Binding Path=State}"
        Width="100"

        ctrl:RangeColumn.MinWidth="100"
        ctrl:RangeColumn.IsFillColumn="true"
        Header="Country" />

    </GridView>

  </ListView.View>
</ListView>

The first range column which has the value IsFillColumn set to true, will automatically get resized to the remaining space. The column will not get filled if the ListView contains a proportional column.

Dragging the mouse out of the configured range when resizing, the mouse cursor changes its representation to indicate this.

Combined Usage

In real life, it is common to combine these column types. Their order can be varied as required:

XML
<ListView
  Name="MyListView"
  ctrl:ListViewLayoutManager.Enabled="true">

  <ListView.View>
    <GridView>

      <GridViewColumn
        DisplayMemberBinding="{Binding Path=State}"
        ctrl:FixedColumn.Width="25"
        Header="Name" />

      <GridViewColumn
        DisplayMemberBinding="{Binding Path=Name}"

        Width="150"
        ctrl:RangeColumn.MinWidth="100"
        ctrl:RangeColumn.MaxWidth="200"

        Header="City" />

      <GridViewColumn
        DisplayMemberBinding="{Binding Path=City}"
        ctrl:ProportionalColumn.Width="1"
        Header="Zip" />

      <GridViewColumn
        DisplayMemberBinding="{Binding Path=Country}"

        ctrl:ProportionalColumn.Width="2"
        Header="Country" />
    </GridView>

  </ListView.View>
</ListView>

ListView/GridView Layout using Code Behind

It is also possible to setup the column layout in the source code:

C#
ListView listView = new ListView();
new ListViewLayoutManager( listView ); // attach the layout manager

GridView gridView = new GridView();
gridView.Columns.Add( FixedColumn.ApplyWidth( new MyGridViewColumn( "State" ), 25 ) );
gridView.Columns.Add( RangeColumn.ApplyWidth( new MyGridViewColumn( "Name" ), 100,
    150, 200 ) ); // 100...200
gridView.Columns.Add( ProportionalColumn.ApplyWidth( new MyGridViewColumn( "City" ),
    1 ) ); // 33%
gridView.Columns.Add( ProportionalColumn.ApplyWidth( new MyGridViewColumn(
    "Country" ), 2 ) ); // 66%

listView.View = gridView;

Columns with Custom Representation

The class ConverterGridColumn serves as a base class for binding table columns to individual objects:

C#
// ------------------------------------------------------------------------
public class Customer
{
  // ----------------------------------------------------------------------
  public Customer()
  {
  } // Customer

  // ----------------------------------------------------------------------
  public string FirstName
  {
    get { return this.firstName; }
    set { this.firstName = value; }
  } // FirstName

  // ----------------------------------------------------------------------
  public string LastName
  {
    get { return this.lastName; }
    set { this.lastName = value; }
  } // LastName

  // ----------------------------------------------------------------------
  // members
  private string firstName;
  private string lastName;

} // class Customer

// ------------------------------------------------------------------------
public class CustomerFullNameColumn : ConverterGridViewColumn
{
  // ----------------------------------------------------------------------
  public CustomerGridViewColumn() :
    base( typeof( Customer ) )
  {
  } // CustomerGridViewColumn

  // ----------------------------------------------------------------------
  protected override object ConvertValue( object value )
  {
    Customer customer = value as Customer;
    return string.Concat( customer.FirstName, " ", customer.LastName );
  } // ConvertValue

} // class CustomerFullNameColumn

Columns Represented as Images

The class ImageGridColumn serves as a base class for binding table columns to images/icons:

C#
// ------------------------------------------------------------------------
public class Customer
{
  // ----------------------------------------------------------------------
  public Customer()
  {
  } // Customer

  // ----------------------------------------------------------------------
  public bool IsActive
  {
    get { return this.isActive; }
    set { this.isActive = value; }
  } // IsActive

  // ----------------------------------------------------------------------
  // members
  private bool isActive;

} // class Customer

// ------------------------------------------------------------------------
public class CustomerActiveColumn : ImageGridViewColumn
{
  // ----------------------------------------------------------------------
  public CustomerActiveColumn()
  {
  } // CustomerActiveColumn

  // ----------------------------------------------------------------------
  protected override ImageSource GetImageSource( object value )
  {
    Customer customer = value as Customer;
    if ( customer != null )
    {
      return new BitmapImage( new Uri( customer.IsActive ? "Active.png" :
          "Inactive.png" ) );
    }
    return null;
  } // GetImageSource

} // class CustomerActiveColumn

Points of Interest

At the core of layouting the ListView control lies the ListViewLayoutManager with the following responsibilities:

  • Preventing resizing columns of type Fixed and Proportional
  • Enforcing the range of allowed widths for type Range
  • Updating the column layout upon changes to the size of the ListView control
  • Updating the column layout upon changes to the widths of individual columns

To properly receive the required information, it is necessary to analyze the Visual Tree of the ListView control. The object Thumb provides the events for changes to the column width. To ensure correctly representing the mouse cursor, the events PreviewMouseMove and PreviewMouseLeftButtonDown are being handled.

The event ScrollChanged of the class ScrollViewer triggers updates due to control size changes. Only changes to the size of the control Viewport are relevant for resizing (ScrollChangedEventArgs.ViewportWidthChange).

Tracking the property Width of class GridViewColumn using DependencyPropertyDescriptor gives notification of changes to column widths.

To support integration in existing systems, the required column data is kept in Attached Properties. Using the method DependencyProperty.ReadLocalValue() allows detecting whether the own property is present in an object.

The class ConverterGridViewColumn uses a simple Binding and at the same time represents the converter (interface IValueConverter).

The class ImageGridViewColumn uses the FrameworkElementFactory in a DataTemplate to embed the image dynamically. By default, the images in the ListView/GridView control will be stretched automatically (property Image.Stretch). Because the image in a DataTemplate gets created dynamically, the property value of the template element must be assigned using a Binding:

C#
// ----------------------------------------------------------------------
protected ImageGridViewColumn( Stretch imageStretch )
{
  FrameworkElementFactory imageElement = new FrameworkElementFactory( typeof( Image ) );

  // image stretching
  Binding imageStretchBinding = new Binding();
  imageStretchBinding.Source = imageStretch;
  imageElement.SetBinding( Image.StretchProperty, imageStretchBinding );

  DataTemplate template = new DataTemplate();
  template.VisualTree = imageElement;
  CellTemplate = template;
} // ImageGridViewColumn

History

  • 28th September, 2012
    • Added projects and solutions for Visual Studio 2010
    • ReSharped source code
    • ListViewLayoutManager: Using a value range to check if the scroll viewer has been changed
    • ListViewLayoutManager: New public method Refresh
    • ListViewLayoutManager: Hide fixed column thumb - thanks Name taken
  • 3rd August, 2009
    • RangeColumn now supports columns with automatic width (Width="Auto") - thanks inv_inv
  • 27th November, 2008
    • Fixed memory leak by un-registering the ListView events - thanks Dave and John
  • 3rd November, 2008
    • Fixed infinite recursion of column resizing in some rare cases - thanks ascalonx
    • Fixed column resizing in case of nested ListView - thanks mburi
  • 19th September, 2008
    • Fill column can now be at any position - the first occurrence will be used
  • 12th June, 2008
    • Added RangeColumn.IsFillColumn to fill the last column to the available visible area
  • 3rd June, 2008
    • Considering limits of range column during auto-resize (mouse double click) - thanks paul
  • 14th May, 2008
    • Fixed horizontal scrolling in case of absent proportional columns - thanks vernarim
  • 10th May, 2008
  • 23rd April, 2008
    • Added screenshot descriptions
    • Minor bug fixes
  • 6th April, 2008
    • Initial release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Switzerland Switzerland
👨 Senior .NET Software Engineer

🚀 My Open Source Projects
- Time Period Library 👉 GitHub
- Payroll Engine 👉 GitHub

Feedback and contributions are welcome.



Comments and Discussions

 
AnswerRe: Does this work with DataGrid? Pin
Jani Giannoudis22-Sep-09 19:43
Jani Giannoudis22-Sep-09 19:43 
GeneralFixedColumn does not work Pin
feross17-Aug-09 12:59
feross17-Aug-09 12:59 
QuestionRe: FixedColumn does not work Pin
Jani Giannoudis17-Aug-09 23:27
Jani Giannoudis17-Aug-09 23:27 
AnswerRe: FixedColumn does not work Pin
Member 1737928-Oct-10 6:35
Member 1737928-Oct-10 6:35 
GeneralProblems with width Pin
Fluppi5-Aug-09 12:27
Fluppi5-Aug-09 12:27 
QuestionRe: Problems with width Pin
Jani Giannoudis5-Aug-09 19:45
Jani Giannoudis5-Aug-09 19:45 
AnswerRe: Problems with width Pin
Fluppi6-Aug-09 5:58
Fluppi6-Aug-09 5:58 
AnswerRe: Problems with width Pin
Jani Giannoudis7-Aug-09 3:42
Jani Giannoudis7-Aug-09 3:42 
GeneralI do not understand why this is useful Pin
Seraph_summer4-Aug-09 8:10
Seraph_summer4-Aug-09 8:10 
AnswerRe: I do not understand why this is useful Pin
Jani Giannoudis4-Aug-09 11:32
Jani Giannoudis4-Aug-09 11:32 
QuestionMinWidth + Width="Auto" Pin
Martin Konicek22-Jul-09 0:47
Martin Konicek22-Jul-09 0:47 
AnswerRe: MinWidth + Width="Auto" Pin
Jani Giannoudis2-Aug-09 23:38
Jani Giannoudis2-Aug-09 23:38 
AnswerRe: MinWidth + Width="Auto" Pin
Jani Giannoudis3-Aug-09 19:12
Jani Giannoudis3-Aug-09 19:12 
QuestionEvents on the columns Pin
Joezer BH21-Jun-09 20:55
professionalJoezer BH21-Jun-09 20:55 
AnswerRe: Events on the columns Pin
Jani Giannoudis23-Jun-09 2:24
Jani Giannoudis23-Jun-09 2:24 
GeneralPrinting WPF Listview which has 7-segment display user control as one of the columns Pin
vidya bhat27-May-09 22:53
vidya bhat27-May-09 22:53 
AnswerRe: Printing WPF Listview which has 7-segment display user control as one of the columns Pin
Jani Giannoudis28-May-09 5:39
Jani Giannoudis28-May-09 5:39 
QuestionIsFillColumn with Window.SizeToContent=WidthAndHeight Pin
brinko9917-May-09 22:34
brinko9917-May-09 22:34 
AnswerRe: IsFillColumn with Window.SizeToContent=WidthAndHeight Pin
Jani Giannoudis18-May-09 3:43
Jani Giannoudis18-May-09 3:43 
GeneralRe: IsFillColumn with Window.SizeToContent=WidthAndHeight Pin
brinko9918-May-09 4:57
brinko9918-May-09 4:57 
GeneralInvalidate a special cell in a RangeColumn Pin
Jochen Auinger16-Nov-08 5:08
professionalJochen Auinger16-Nov-08 5:08 
AnswerRe: Invalidate a special cell in a RangeColumn Pin
Jani Giannoudis17-Nov-08 2:41
Jani Giannoudis17-Nov-08 2:41 
GeneralRe: Invalidate a special cell in a RangeColumn Pin
Jochen Auinger17-Nov-08 3:32
professionalJochen Auinger17-Nov-08 3:32 
AnswerRe: Invalidate a special cell in a RangeColumn Pin
Jani Giannoudis17-Nov-08 7:21
Jani Giannoudis17-Nov-08 7:21 
GeneralRe: Invalidate a special cell in a RangeColumn Pin
Jochen Auinger8-Dec-08 19:44
professionalJochen Auinger8-Dec-08 19:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.