Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET SplitContainer using C# Windows Forms

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?

like image 379
Tim Rupe Avatar asked May 28 '09 19:05

Tim Rupe


1 Answers

Set the BorderStyle of the SplitContainer to FixedSingle or Fixed3D.

like image 69
Jon B Avatar answered Oct 01 '22 19:10

Jon B