tags:

views:

632

answers:

1

Hello,

I'm creating a Windows Forms application and I'd like to have a similar look and feel to SQL Server's Management Studio, i.e. a nice autohiding and dockable panel on the left.

A similar control is Visual Studio's "Toolbox".

What sort of control is Management Studio's Object Explorer? And where can I get one? I'm using .NET 3.5 on the Windows Forms project.

Thanks

-Matt

+1  A: 

The Base Class Library doesn't provide this type of control. You can do some things to make windows that looking like those (changing the borderstyle) or having docking panels, but the autohide/movable docking/etc capabilities are beyond those of the BCL.

Many third party solutions are available for purchase, though.

Here are five fairly common ones:

Devexpress XtraBars

Telerik RadDock

Actipro UIStudio Docking

Infragistics WinDockManager

Janus UIPanelManager

Reed Copsey
just for completeness of the big vendors: Infragistics WinDockManager and Janus UI Controls.
Peter Gfader
@Peter Gfader: Thanks for the suggestions - flushed out list with those two as well.
Reed Copsey
@Reed are there any open source ones?
Chris Watts
@Chris: Probably - but I haven't found a good open source one.
Reed Copsey