I have a form holding a TableLayout with 1 column and 3 rows that holds 2 FlowLayoutPanels and a Text box. All Rows are AutoSize, and the column is set to Percentage=100%.
Each FlowLayoutPanel holds several TextBoxes. The FlowLayoutPanels are set: LeftToRight, AutoSize=true, GrowAndShrink, Docking=Fill.
The outline is:
Form
TableLayout (Dock=Fill)
FlowLayoutPanel(Dock=Fill, AutoSize=True, GrowShrink)
More controls
FlowLayoutPanel(Dock=Fill, AutoSize=True, GrowShrink)
More controls
TextBox(Dock=Fill, MultiLine=true)
The problem is if I place the FlowLayoutPanel inside a GroupBox which are also set to be AutoSize=true, the FlowLayoutPanel Height are not set correctly and it shows the TextBoxes in 1 line cutting some TextBoxes out of the form.
The outline is:
Form
TableLayout (Dock=Fill)
GroupBox (Dock=Fill, AutoSize=True, GrowShrink)
FlowLayoutPanel(Dock=Fill, AutoSize=True, GrowShrink)
More controls
GroupBox (Dock=Fill, AutoSize=True, GrowShrink)
FlowLayoutPanel(Dock=Fill, AutoSize=True, GrowShrink)
More controls
TextBox(Dock=Fill, MultiLine=true)
BTW,the same thing happens if I use instead of a GroupBox, a Panel or even a UserControl to hold the FlowLayoutPanel.
BTW 2, this happens even without the TableLayout. I tried placing the GroupBox (with the FlowLayoutPanel) on an AutoSized Form and I get the same behavior.
What I think the problem is that when the FlowLayoutPanel is in another container that is also AutoSized it fails to pass to it's container is preferred size.
What can be done to override this bug??
Please help Thanks, Yoram
p.s: I must use the GroupBox to have a nice frame around the TextBoxes.
As you dock the FlowLayoutPanel
in the GroupBox
(or other containers), you may as well leave their AutoSize=false
. I'm not sure, but this may make the groupbox the 'leading' control when it comes to sizing.
Edit (after your comment)
'Leading control' are my words trying to express that groupbox size would determine that of the FLP, it's not some official term. The problem is that docking and autosizing are fighting one another by nature and someone should take, well, control. Which can only be done when docking and autosizing are cut back and by programming the resize events yourself.
After playing around a bit I finally came up with this model:
Form
TableLayout (Dock=Fill)
GroupBox ()
FlowLayoutPanel(Dock=Fill)
More controls
And the resize event:
private void Form1_Resize(object sender, EventArgs e)
{
this.SuspendLayout();
this.groupBox.Width = this.Width - 20;
this.groupBox.Height =
this.flowLayoutPanel.GetPreferredSize(this.groupBox.Size).Height + 20;
this.ResumeLayout();
}
I hope I understood you well. At least this may point you in the right direction.