bretddog
bretddog

Reputation: 5519

What controls are used for this form?

Please see attached image: http://i54.tinypic.com/1zbuskp.png

I'm wondering about what main controls that makes up this layout of 3 "panels" with header bars.

I assume it's a set of SplitContainers, but then I'm unsure if what's inside are panels, or individual forms.. Is it possible to determine from this image? And what is used for the header bars?

As can be seen, the headerbars changes slightly color when each panel is selected. In image the middle one was clicked.

enter image description here

Upvotes: 0

Views: 95

Answers (3)

Pedery
Pedery

Reputation: 3636

This could just as easily be three panels with controls, each docked, and possibly with a splitter in between. The highlighted titlebar could easily be custom drawn.

Upvotes: 0

Stefan
Stefan

Reputation: 11509

Use spy++ and/or reflector to find out for sure.

Upvotes: 1

Meta-Knight
Meta-Knight

Reputation: 17845

This does look like SplitContainers. Inside each section it's either a panel with controls inside it, or a UserControl (can't be a form because you can't put a form inside another one).

I don't know what the header bars are, could be a custom control with some background image and a label over it.

Upvotes: 0

Related Questions