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
223 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
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
135 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
2answers
836 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
204 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
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
1answer
63 views
How to check all textboxes inside a splitcontainer?
My program uses a split container which both panels 1 & 2 have text boxes. I am trying to run a check when the program is attempting to close that prompts users to save. I tried the following code ...
1
vote
0answers
25 views
Handling a lot of SplitContainers in VS2010
i have an application with a lot of activeX-components that require to be created on one form. These components can be quite bitchy sometimes so using them requires a bit of "bending the environment ...
1
vote
1answer
372 views
How to Change the DevExpress Split Container Control Pannel Name?
Hi all,
Any body please help how to change the DevExpress splitContainer control Panel Name.
Thanks in advance
1
vote
1answer
353 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
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
2answers
46 views
c# Using TreeView control in SplitContainer to change the content
I have a TreeView in the left side of a SplitContainer and I would like the content on the right side to change when I click on a TreeNode. What I'm trying to do is a settings "window" such as the one ...
0
votes
1answer
66 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
52 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
0answers
89 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
106 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
49 views
can not dispose controls in splitcontainer
i try to dispose controls in split container using this code.
foreach (Control c in splitContainerMain.Panel2.Controls)
{
c.Dispose();
}
but problem is split container has contains two ...
0
votes
2answers
131 views
DataGridView size is out of splitContainer panel even the Dock property is Fill
There are a SplitContainer and couple of DataViewGrids. In Designer I docked DataViewGrids to Panel1 and Panel2 of SplitContainer respectively. So, in designer everithing seems to be OK. But when I ...
0
votes
2answers
235 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
1answer
180 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
143 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
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
2answers
181 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
1answer
132 views
Control no longer gaining focus after putting it in a splitcontainer
I have a forms app and when it starts up I would like it to give focus to a particular text box. While I was initially developing I just whacked all the controls straight on the form and the focus ...
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
388 views
SplitContainer - What causes the inconsistent behaviour I experience when the orientation is set to horizontal?
Starting from scratch in a new project in which the properties of the default Form1 form have not been altered I drop a SplitContainer on the form and set its properties to:
Anchor - Top, Left
...
0
votes
3answers
1k views
SplitContainer that only resizes panel1
Is there a way to make the SplitContainer only adjust the size of panel1? I have a Vertical SplitContainer and when I move the splitter I would like the size of the first panel to increase/decrease, ...
0
votes
1answer
488 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
619 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 ...
-1
votes
2answers
651 views
c# resizing controls in splitcontainer
I have a splitcontainer with 2 panels. In the first panel is a Treeview and a Datagridview in the other.
When I move the splitter, to be able to see more of the treeview, the Datagridview gets ...
-4
votes
3answers
92 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 ...