views:

229

answers:

1

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.

+4  A: 

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
Yup, that will do it alright. I appreciate the answer, exactly what I was looking for.
Jim Beam