Tagged Questions

Split Container is a object that allows the user to split a page/form in multiple sections with each section being resizable.

learn more… | top users | synonyms

4
votes
1answer
395 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
180 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
785 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
1answer
61 views

How does one use a WPF/SL Grid and GridSplitter as a bindable SplitContainer?

Suppose you want to allow a user to re-size a WPF/SL Grid containing two columns. But you also want to allow the user to hide one column (a "panel") or the other column. When both columns (panels) ...
2
votes
2answers
113 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
655 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
179 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
634 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
48 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
21 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
350 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
2answers
300 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
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
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
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
1answer
951 views

Is there a microsoft based asp.net split container?

MSDN has the functionality I'm looking for here. Since microsoft recognizes the usefulness of a split container for the web, is this page using a publically available microsoft created, .net based ...
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 ...
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
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
0answers
47 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
67 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
42 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
105 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
0answers
78 views

Dock fill error on maximized child window of mdi window

I want to open a child window of an mdi window at maximized size with a split container. I have set the child window's WindowState as maximized, and the splitcontainer's Dock as Fill within the ...
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
0answers
14 views

control in panel1 appears when splitter is slighly move otherwised not

I am doing windows forms programming using C#.Net. I have user control consisting of a split Container and hence 2 panels. If I add (sat controlA) into panel1 of splitter container and ControlB into ...
0
votes
2answers
45 views

Forcing re-sizing to be an odd multiple of 8

I have a couple of split panels nested inside of each other. The problem is, I'm rendering an 8x8 tiled game inside of the center panel. Basically, the height and width of the panel need to be an ...
0
votes
2answers
187 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
0answers
61 views

How to make it run according to the last active form when I clicked a menu button?

I have a main form which has a ribbon control at the top, and also there are two panel controls. the left panel which is panel1 is only for navigation through forms or let's call it pages.. the ...
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
176 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
151 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
121 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
1answer
358 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
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
367 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
462 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
1answer
142 views

Catching mouse events for a custom SplitContainerDesigner

I'm trying to create a user control that will provide a draggable splitter between two panels — exactly like SplitContainer — in a custom IDesignerHost implementation. SplitContainer itself, as far as ...
0
votes
2answers
601 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
614 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
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 ...