Tagged Questions
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
183 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
786 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 ...
3
votes
4answers
1k views
Multiline Textbox Resizing in C#
I have two multiline textboxes separated within a splitContainer. When I drag the splitter left or right I would like the textboxes to resize accordingly. How do I do this? I am using Microsoft ...
2
votes
2answers
114 views
Stop splitter from scaling panels in C#?
I have a SplitContainer with both panels filled.
When I resize it, tho, both panels scale equally so the splitter is at the same relative distance in the container.
I really need to block this ...
2
votes
3answers
180 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
636 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
129 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
1answer
342 views
How to correctly rename a SplitContainer WinForms control and its panels?
I've placed a split container on a form and want to rename it and its panels to something meaningful (as I am going to add more SplitContainers on this form). Butwhen I rename splitContainer1 to ...
1
vote
2answers
2k views
How to add a Panel to SplitContainer?
I am using SplitContainer and it contains only 2 panels but I need 3(panels).
QUESTIONS:
Is it possible to add more panels to SplitContainer?
if YES
how?
else
why not?
Thanks :-)
1
vote
3answers
773 views
Is it possible to avoid Focus on SplitContainer?
The WinForm SplitContainer gets the focus when it's dragged or clicked, while the Splitter does not.
The side-effect of this, is that dragging a SplitContainer bar fires Leave/Validate on other ...
0
votes
1answer
24 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
1answer
33 views
Auto adjust Label Text as I move splitter
As I move splitter to left, it hide my text(as in above image). I want to auto adjust Label Text as I move splitter.
update me!
0
votes
1answer
69 views
Collapsing and Expanding SplitContainer panels
I have 3 split containers in my winform application. splitContainer1, splitContainer2, splitContainer3
splitContainer1 is the main split container. in it's panel1 I put splitContainer2 and in its ...
0
votes
1answer
61 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
190 views
C# Prevent resizing of both splitcontainer panels
I have a SplitContainer and was wondering how I would go about setting a static size for both panels and prevent the user from having the ability to resize the panels. Would FixedPanel be the ...
0
votes
3answers
81 views
WinForms : how to add toolStrip to a form already divided into left/right panes using a SplitContainer control
My form is divided up into left and right panes, and the right pane is split into upper and lower panes:
AAAABBBB
AAAACCCC
There's a menu-strip at the top, below the title-bar and a ...
0
votes
1answer
165 views
Winform SplitContainers redraw issue
I have added a SplitContainer inside another SplitContainer's Panel. Everything redraws fine when the splitters move. But resize of inner SplitContainer doesn't work correctly if the main ...
0
votes
1answer
133 views
How fill and autoresized in splitContainer
I have filled splitcontainer.
legend for image:
SplitContainer
ListViews
Spliter
Need:
blue lines show what to do with a ListView.
0
votes
2answers
153 views
Constrain the movement of a SplitContainer in C#?
I have a SplitContainer in my form.
On the 1st panel I have a TreeView and a ListView on the 2nd. (Classic)
Now I want to limit the size of the 1st panel (with the TreeView) to 250 pixels wide.
I wish ...
0
votes
3answers
2k views
SplitContainer's panel as the MDI parent for other forms
I have got a control with a Splitcontainer added. I want to place
another forms on the second panel (Panel2). However, it is not possible to
set the MDIParent property of a brand new form to Panel2.
...
0
votes
1answer
463 views
Auto resize the panels of SplitContainer
in a splitcontainer if I write splitcontainer1.panel1.visible = false; it does not cause the panel2 to fill all the space of the splitcontainer but this is what I actually need.
can you please help ...
0
votes
2answers
602 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 ...
-4
votes
3answers
75 views
I want to retrieve the sub form values
In c# application I have a splitcontainer in which in right panel i have a form.I want to retrieve the values of the textboxes of the form when I click a button outside the form inside the panel. how ...