I have a SplitContainer control, and the Splitter in the middle is very ugly. By setting the Background Color of SplitContainer to (insert color here), then setting the BackColor of the Panel1 and Panel2 to White, I can have my SPlitter looking nice. BUT, by default, Windows Puts the selection mark crap all over the Splitter, even before it's selected. How can I make sure that selection marker stuff never shows?

enter image description here

link|improve this question

68% accept rate
1  
How do you want your splitter to look like? How will user know that it is a splitter if you hide its appearance? – Daniel Mošmondor May 15 '11 at 6:49
feedback

3 Answers

I think by "Selection Marker Crap", you mean the fuzzy line that indicates the control is selected. If you don't want this showing up, set some other control to be selected at startup. Something like:

Textbox1.Selected = true;

This should solve your issue if it is just one of it not being selected. However, this will come back if you select the item to resize something. In that case, you could put something in the mouse_up event to move the selection off of the control. That way, the user moves the splitter bar and then when they let go, the selection gets cleared off of the splitter.

Another way would be to make the splitter bar narrow enough that the gray fuzzy line doesn't show up. To do this, you could do the following (tested):

splitContainer1.BorderStyle = BorderStyle.FixedSingle;
splitContainer1.SplitterWidth = 1;
link|improve this answer
But I don't want it to be that way at all. Because (obviously) when the user goes to resize the panel with the splitter, it will show up again. But I don't want that. Is there a way to change this behaviour? – βӔḺṪẶⱫŌŔ May 14 '11 at 21:59
feedback

This code will move the focus from the splitContainer to TreeView shortly after moved.

private void splitContainer1_SplitterMoved(object sender, SplitterEventArgs e) {
  if(this.splitContainer1.CanFocus) {
     this.splitContainer1.ActiveControl = this.treeView1;
  }
}
link|improve this answer
feedback

You could add an event handler to steal the focus from the container on MouseUp's... It's a little messy but it works. :)

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.