I have a main application window that also implements a dock panel. At the bottom of one of the existing dock panels, I want to add a window that the user can hide or view at will. What's the best way to implement this? I can envision most of the code behind this, I just need to figure out the appropriate control for this window to appear when needed but still be discretely available.
Asked
Active
Viewed 4,296 times
1 Answers
11
An Expander control might be what you are looking for. This is a ContentControl so you can use whatever Panel you want as the content.

Phil Devaney
- 17,607
- 6
- 41
- 33
-
Yup, that will do it alright. I appreciate the answer, exactly what I was looking for. – Unknown Coder Dec 07 '09 at 16:52
-
1If you care about animations and Expanders, see the following link: If http://mattserbinski.com/blog/animating-expander – Etienne Nov 29 '11 at 18:43