Tagged Questions
5
votes
1answer
459 views
SplitContainer ISupportInitialize issue: VS2010 Targeting .NET 3.5
In VS2010 I had a project targeting .NET Framework 4.0 and then had to revert to target v. 3.5. Once this happened, the SplitContainer object that I had will not display and will actually throw an ...
4
votes
5answers
2k views
WinForms: Alternative to SplitContainer?
Are there any alternative controls someone can suggest to replace the WinForms SplitContainer? I don't like how the SplitContainer shows that weird, dotted strip when its selected and when its being ...
3
votes
3answers
221 views
Removing Windows' ugly Selection marker thing from Splitter in SpitContainer Control
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 ...
3
votes
2answers
817 views
With the .NET “WinForms” SplitContainer control, how can I hide a panel dynamically?
Calling MyPanel.Panel1.Hide(); or MyPanel.Panel2.Hide(); simply hides the controls inside the panel... but I want to have the other side of the panel fill up the whole space.
So, if I hide Panel1, I ...
2
votes
2answers
827 views
Collapse 'button' for splitcontainer control
I use Microsoft splitcontainer control in my WinForms desktop application (.net 4/c#/vs 2010).
I'd like to have a small button (or any nice UI element) between the panels of the spliiter control to ...
2
votes
3answers
203 views
Common Practice - SplitContainer
Is it common practice to have a SplitContainer control, and then add another SplitContainer to it, and then add another, and another...?
It just seems like there should be a better way, I mean, once ...
2
votes
1answer
685 views
Add button control(s) to SplitContainer Splitter
Is there any way to display controls (like buttons) on the adjustable splitter that displays between the two panels in a .NET SplitContainer?
Example:
I don't think SplitContainer natively ...
2
votes
3answers
135 views
How can I detect when a control is no longer visible?
In my current app I have a Tree control on a page of a TabControl which is inside a panel of a SplitContainer control. The tree control can thus be hidden by either hiding the SplitContainer panel, or ...
1
vote
2answers
328 views
Increase size of SplitContainerControl split bar
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 ...
1
vote
1answer
1k views
Splitcontainer, Make a fixed panel
I have a splitcontainer with horizontal orientation.
I want a fixed height for panel2 only during form resize, and let splitter resize panel2
Now I'm doing it this way, but I'm not satisfy because ...
1
vote
3answers
3k views
Fixed Panel Height in a SplitContainer
I have a WinForm containing a bindingNavigator at the top and a splitContainer with two horisontal panels below it. The splitContainer fills the space not occupied by the bindingNavigator.
I would ...
0
votes
1answer
62 views
How do I put a ToolStrip inside the Panel of a SplitContainer?
I have a SplitContainer object in a TabControl on a form. In mySplitControl.Panel1, I have a ListBox, which I currently have docked to the top of Panel1.
I would like to put a ToolStrip below the ...
0
votes
0answers
86 views
Making TableLayoutPanel and SplitContainer scroll properly with large content
So here's what I'm trying to do:
A SplitContainer contains a first master control in one panel and a group of secondary controls in its second panel, organised by a TableLayoutPanel and added at ...
0
votes
1answer
72 views
Conflict with MDI and SplitContainer
I am using a SplitContainer to split a MDI form vertically. On the left panel I have a tree control and on the right panel I am displaying the child forms. I am trying to ensure only a single instance ...
0
votes
2answers
211 views
Handle event in splitter area of splitcontainer control
Is there any trivial way to handle click event on the splitter area of the WinFroms splitcontainer control? (symbolized by blue in my picture) E.g. I'd like to collapse panel1 by double clicking this ...
0
votes
1answer
373 views
Synchronize RichTextBox Vertical Scrolling with SplitContainer panel scrolling
I have a win form with a SplitContainer
The SplitContainer's panel1 consists of a RichTextBox.
Panel2 AutoScroll is set to true.
I want to synchronize the scrolling of RichTextBox and ...
0
votes
2answers
617 views
SplitContainer.Panel1 Selection to Changes SplitContainer.Panel2 selection
The MSDN documentation for the SplitContainer controls says:
With the SplitContainer control, you can create complex user interfaces;
often, a selection in one panel
determines what objects ...