I am using a SplitContainerControl which has two panels. I'd like to increase the size of the splitter drag panel between them because it's difficult to see and click/drag. Is there a property that controls this? I can see SplitterBounds but it's readonly.

link|improve this question

feedback

2 Answers

splitContainer1.SplitterWidth = 100;

.NET also has a standalone splitter bar (without panels like SplitContainer); its width can be changed in the form editor. The slight trick with standalone splitter is setting the docking order.

EDIT: O.P. had revised to show that he's working with DevExpress SplitContainerControl rather than .NET native SplitContainer.

link|improve this answer
Thanks for your answer. I changed my implementation to SplitContainterControl, but upvoted your answer because it's still correct :) – calico-cat Feb 15 '11 at 1:19
feedback
up vote 0 down vote accepted

You have to create a new skin. I found it pretty easy.

http://documentation.devexpress.com/#SkinEditor/CustomDocument2547

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.