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 ListBox, and have the ListBox and ToolStrip fill the entire space of Panel1, so that the ListBox expands automatically as the form is maximized. I would like the bottom of the ListBox to sit on top of the ToolStrip.

At the moment, the ToolStrip is disappearing when I run the application, because I can't seem to get it to go into Panel1, and be recognized as one of Panel1's child controls. Instead, the ToolStrip disappears; it's apparently going behind Panel1, the SplitContainer, or perhaps the entire TabControl.

How do I get the ToolStrip to go into Panel1, and dock at the bottom of Panel1, with the ListBox filling the remaining space in Panel1?

link|improve this question

what your platform? – Muad'Dib Jan 31 at 0:38
@Muad'Dib: The development machine is a Windows XP box. The target OS is Windows XP and above. – Robert Harvey Jan 31 at 0:39
what kind of app is this? silverlight? asp.net? winforms? wpf? etc. – Muad'Dib Jan 31 at 0:41
Winforms. .NET Framework 3.5 – Robert Harvey Jan 31 at 0:44
feedback

1 Answer

up vote 1 down vote accepted

Based on your details, I recreated the project and did not get the same results

Here is the screenshot

The Listbox is Dock property is set to Fill

The Toolstrip is Dock property is set to Bottom

Both have Panel1 as the container. If you are unsure if your Toolstrip is in the right parent. Check the designer code. Make sure when the control is added, it's being added to the SplitContainer.

link|improve this answer
Looks like you're running in Windows 7 there... I'm beginning to suspect this is an XP problem. Thanks for trying, though. – Robert Harvey Jan 31 at 1:51
@Robert: I'm not buying that this is an XP problem. They didn't change the behavior of the WinForms controls with regards to docking and layout between XP and 7. There's probably something amiss with your code. It's not uncommon for the designer to choke on complex layouts. Have you actually run the same project on two different machines and seen two different results? – Cody Gray Jan 31 at 4:45
@CodyGray: I only say that because I've had confirmed XP-related problems before with Winforms. If it is a problem that requires subclassing a control to fix, it will be the third time in this project. The layout is really not all that complicated; I have maybe a dozen controls on the main form. I'm decidedly unimpressed with Winforms so far, at least under XP. – Robert Harvey Jan 31 at 15:15
@RobertHarvey If you think it's an XP problem, try to make a simple project like mine or use my code (dl.dropbox.com/u/18919663/toolstriptest2.zip) – Corylulu Jan 31 at 17:35
I tend to have to agree with @CodyGray here, this doesn't seem to be an XP issue. – Corylulu Jan 31 at 17:37
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.