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?
