5,693,062 members and growing! (18,107 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » Windows Presentation Foundation » General     Intermediate License: The Code Project Open License (CPOL)

SlidingListBox – Animating ListBoxItems in WPF

By Josh Smith

A ListBox which slides its items when they are selected and deselected.
C# 2.0, C#, Windows, .NET, .NET 3.0, XAML, WPF, Visual Studio, VS2005, Dev

Posted: 19 Oct 2006
Updated: 19 Oct 2006
Views: 42,855
Bookmarked: 35 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
17 votes for this Article.
Popularity: 5.72 Rating: 4.65 out of 5
2 votes, 12.5%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
1 vote, 6.3%
4
13 votes, 81.3%
5

Sample Image - SlidingListBox.png

Introduction

This article presents a ListBox-derived control which slides its items when they are selected and deselected. The SlidingListBox allows you to customize the animated sliding of its items so that you can make it “feel right” in your applications. The effect provided by the SlidingListBox can help make your user interfaces more intuitive and interactive for the users, which is always a good thing.

The code presented here was compiled and tested against the RC1 of the .NET Framework 3.0.

Background

The WPF ListBox control is very flexible and has features far beyond the standard WinForms ListBox.  This article does not discuss the the fundamentals of the WPF ListBox, but if you want to learn more about it I recommend Mike Hillberg’s excellent blog entry “Brief Anatomy of a ListBox”. 

There is one important thing to know about the default ListBox ItemTemplate, which is relevant in this article. By default, each item's visual tree will consist of a Border, which contains a ContentPresenter. The ContentPresenter contains the visuals pertaining to the items underlying data object. The fact that the ContentPresenter is wrapped in a Border is very important to the internal workings of the SlidingListBox, as we see later on.

Using the SlidingListBox

The SlidingListBox can be used just like the regular ListBox, except you have three more properties to play with. Below is some XAML which creates and configures the control:

<jas:SlidingListBox 
  HorizontalContentAlignment="Right" 
  SlideDirection="Left"
  SlideDistance="50"
  SlideDuration="250"
 />

The XAML above creates a SlidingListBox whose items are aligned to the right side of the control, and when an item is selected it will slide to the left by fifty logical pixels over the course of 250 milliseconds. The snippet above shows the three dependency properties declared by the SlidingListBox class:

  • SlideDirection – This property allows you to specify what direction the selected item(s) should be slid. You can choose ‘Up’,  ‘Down’, ‘Right’, or ‘Left’. You would probably only use the ‘Up’ or ‘Down’ options if the controls ItemsPanel was set to a panel which lays out the items horizontally. The default value is ‘Right’.
  • SlideDistance – This property allows you to specify a positive number of logical pixels which the selected item(s) are slid. The default value is 20.0.
  • SlideDuration – This property allows you to indicate a positive number of milliseconds that determines how long the sliding animation should last.  The default value is 200.

The demo application, which can be downloaded at the top of this article, shows how the various values of these properties affect the behavior of the sliding animations. If you plan on using the SlidingListBox in your applications, you can play around with the property values in that demo to get a feel for how you  like the control to be configured.

How it Works

As I mentioned in the Background section of this article, the default ListBox ItemTemplate wraps an items visual tree in a Border. The SlidingListBox depends on that Border being there, because it achieves the sliding effect by animating the Border’s Padding property. 

For example, suppose that there is a SlidingListBox whose items slide to the right by 50 logical pixels when selected. When an item in the SlidingListBox is selected, the SlidingListBox finds the Border in that items visual tree. It then animates the Border’s Padding property so that the Padding.Left ends up being incremented by 50. When that ListBoxItem is subsequently deselected, the Borders Padding is animated back to its original state.

There is not too much code involved with getting the sliding animation to happen. The following two methods are members of the SlidingListBox class:

protected override void OnSelectionChanged( SelectionChangedEventArgs e )
{
    base.OnSelectionChanged( e );

    ItemContainerGenerator generator = this.ItemContainerGenerator;
    if( generator.Status != GeneratorStatus.ContainersGenerated )
        return; 

    for( int i = 0; i < this.Items.Count; ++i )
    {
        ListBoxItem item = generator.ContainerFromIndex( i ) as ListBoxItem;
        if( VisualTreeHelper.GetChildrenCount( item ) == 0 )
            continue;

        Border rootBorder = VisualTreeHelper.GetChild( item, 0 ) as Border;
        if( rootBorder == null )
            continue; 

        this.AnimateItem( item, rootBorder );
    }           
}
 
void AnimateItem( ListBoxItem item, Border rootBorder )
{
    // The default Left of a ListBoxItem's root Border's Padding

    // is 2, so the animation logic ensures that the Padding's Left

    // is always at 2 or the "slide distance".

    Thickness thickness;
    if( item.IsSelected )
    {
        ListBoxItemSlideDirection direction = this.SlideDirection;
        if( direction == ListBoxItemSlideDirection.Up )
            thickness = new Thickness( 2, 0, 0, this.SlideDistance );
        else if( direction == ListBoxItemSlideDirection.Right )
            thickness = new Thickness( 2 + this.SlideDistance, 0, 0, 0 );
        else if( direction == ListBoxItemSlideDirection.Down )
            thickness = new Thickness( 2, this.SlideDistance, 0, 0 );
        else
            thickness = new Thickness( 2, 0, this.SlideDistance, 0 );
    }
    else
    {
       thickness = new Thickness( 2, 0, 0, 0 );
    }
 
    TimeSpan timeSpan = TimeSpan.FromMilliseconds( this.SlideDuration );
    Duration duration = new Duration( timeSpan );
    ThicknessAnimation anim = new ThicknessAnimation( thickness, duration );
    rootBorder.BeginAnimation( Border.PaddingProperty, anim );
}

One quirk that the sliding animation code has to deal with is that the Border in a ListBoxItem’s default ItemTemplate has its Padding.Left set to 2. The code which creates the Thickness used in the animation accounts for this by always ensuring that the Thickness’s Left is at least 2.

Feel free to use the SlidingListBox in your WPF applications. All that I ask is that the Copyright blurb at the top of SlidingListBox.cs remains intact. If you think of any cool new features or (gasp) find any bugs, please let me know about it.

License

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

About the Author

Josh Smith


Mvp
Josh creates software. C# and XAML are his preferred modes of expression.

He works at Infragistics as an Experience Design Application Engineer, helping to make the .NET desktop world a better place.

He also plays the music of J.S. Bach on the piano.

Most of all, he loves being with his wonderful girlfriend.

Get his runtime debugging and scripting tool, called Crack.NET, right here[^].

Download his WPF.JoshSmith library here[^]

You can check out his WPF blog here[^].

You can take his guided tour of WPF here[^].

You can check out a powerful debugger visualizer he worked on called Mole for Visual Studio here[^].

His Microsoft MVP profile can be viewed here[^].
Occupation: Software Developer (Senior)
Company: Infragistics, Inc.
Location: United States United States

Other popular Windows Presentation Foundation articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
QuestionDisable Slide Durationmembercraig220336:00 31 Jul '08  
AnswerRe: Disable Slide DurationmvpJosh Smith6:05 31 Jul '08  
Generalhow to manage a 3D listboxitem on a 3D listbox planememberBrototy21:55 7 Jun '07  
GeneralRe: how to manage a 3D listboxitem on a 3D listbox planemvpJosh Smith3:44 8 Jun '07  
QuestionVery nice, but how to make it "resizable"?memberNicola Tufarelli0:59 4 Apr '07  
AnswerRe: Very nice, but how to make it "resizable"?mvpJosh Smith3:10 4 Apr '07  
GeneralDisable highlightingmemberAdamGlowka18:52 6 Feb '07  
GeneralRe: Disable highlightingmemberAdamGlowka19:43 6 Feb '07  
GeneralRe: Disable highlightingmvpJosh Smith12:29 7 Feb '07  
GeneralRe: Disable highlightingmembertjordans6:04 31 Mar '08  
GeneralVery NicememberPaulC197212:38 17 Nov '06  
GeneralRe: Very NicememberJosh Smith12:48 17 Nov '06  
GeneralProblem with namespacememberMuhammad Nasir Jabbar21:38 21 Oct '06  
GeneralRe: Problem with namespacememberJosh Smith5:52 22 Oct '06  
GeneralRe: Problem with namespacememberMuhammad Nasir Jabbar20:51 25 Oct '06  
GeneralRe: Problem with namespacememberJosh Smith3:03 26 Oct '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 19 Oct 2006
Editor: Chris Maunder
Copyright 2006 by Josh Smith
Everything else Copyright © CodeProject, 1999-2008
Web15 | Advertise on the Code Project