tags:

views:

786

answers:

2

I've added a SplitContainer with a horizontal bar between the two panes. I can add content, and move the bar up and down to resize the containers, but the bar itself is invisible. I want the users of my application to see a visible split between these two areas. How can I do this?

+9  A: 

Set the BorderStyle of the SplitContainer to FixedSingle or Fixed3D.

Jon B
Awesome. Thanks! Sometimes I wish stuff like this was a little more obvious.
Tim Rupe
Unfortunately that seems to be a theme with Microsoft controls.
ryanulit
A: 

Depending on the look you desire, you also might try adding objects that distinct borders to the 2 content panels in a manner that would cause the splitter to stand out. This is how Outlook 2003/2007 handles split bars.

Chris Porter