views:

134

answers:

1

In the WindowsXP Control panel, you can see a nice collapsible panel control on the left:

alt text

These are not just collapsible, but animated too. I wondered if these are any kind of control accessible to a developer, specifically in MFC? Or are they custom/bespoke functionality?

+2  A: 

If you have Visual Studio 2008 with the MFC Feature Pack, have a look at the CMFCTasksPane class. The Feature Pack includes a TaskPane sample application that demonstrates how to use this.

ChrisN
MFC Feature Pack is included with VS2008 SP1
Aidan Ryan