Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a WPF control I can use to expand/collapse panels (animated)

I have a window that has a lot of content. I'd like to be able to separate the content using panels, and have a separator that the user can click on the toggle between each panel (with an animation that moves the separator from left to right, showing one section and hiding the other). Think of the Microsoft Office (2007) navigation pane. Is there an easy way to accomplish this?

Thanks!

like image 557
Mark Carpenter Avatar asked Jan 27 '09 21:01

Mark Carpenter


3 Answers

I also need this for my WPF application, and the best I've found is the fully featured Accordion control in the Silverlight Toolkit:

alt text http://www.sitechno.com/Blog/ct.ashx?id=a7c3c2d9-9446-4236-bc6e-c436427002ff&url=http%3a%2f%2fwww.sitechno.com%2fBlog%2fcontent%2fbinary%2fWindowsLiveWriter%2fAccordionpart1_102BB%2fimage_2.png

The source code is available here, and a live demo here. It's probably easy to port to WPF. There's a 5 part blog entry by Ruurd Boeke discussing it in details. In part 4, he discusses how to restyle the accordion using templates to get this great accordion look:

alt text
(source: sitechno.com)

alt text
(source: sitechno.com)

like image 161
Anthony Brien Avatar answered Nov 15 '22 16:11

Anthony Brien


I use Expander.

<Expander Header="Items" IsExpanded="False">
    ...
</Expander>
like image 33
Bryan Anderson Avatar answered Nov 15 '22 16:11

Bryan Anderson


I think what you are looking for is an "Accordion" control, here is a post abotu how to build one from a stack of Expander controls:

http://www.rooijakkers.net/Blog/post/2007/11/WPF-implementation-of-a-basic-Accordion-control.aspx

And for the animation take a look at the "Reveal" control from Kevin's bag-o-tricks at http://j832.com/bagotricks/

I think there's even an animated Expander control template based on the Reveal control in the sample project.

like image 28
Nir Avatar answered Nov 15 '22 14:11

Nir