I have a MDI parent form as the main window of my application. Within this Form
I also have two other Control
a Panel
and a StatusStrip
which are docked to the Right
and Bottom
respectively.
My issue is that the StatusStrip
does not "fill" the entire bottom of the Form
. It is stopped by the Panel
on the right.
I would have figured by the DockStyle
graphic in the properties window of Visual Studio that the Bottom
docked Control
would fill the entire bottom of the Form
.
Is there a way to have the StatusStrip
fill the entire bottom and have the Panel
docked to the Right
while still maintaining the MDI area? (undocked controls in the MDI area allow windows to be "hidden" behind them).