TableLayoutPanel and FlowLayoutPanel resizing question

  • Thread starter Thread starter Dave Farquharson
  • Start date Start date
D

Dave Farquharson

Hello,

I have a 3-row table layout panel, each row of which contains a flow layout
panel. For some reason getting the table and its children to auto-resize
properly (and the flow panel's children to re-flow after) is proving
difficult. Anyone have experience with this, or know of a thorough resource
for information on resizing and anchoring controls? MSDN can be a little
sparse with info at times.

Dave
 
You havent given of the problem you are facing... so its not possible to
directly address your concern.

As regarding Autosize , it behaves weird at times .... so you should set it
to true sparingly , based on your work .

FlowPanel - reflow after .. I think this can be done with FlowBreak property .
 
Hello,

I started using flow breaks to force layouts to "line feed" but this doesn't
help the auto-reflow problem upon resize.

I think the problem I have is based on the complexity of the hierarchy of
containers. A series of layout panels inside a table panel which is inside a
layout which is in one cell of the master table in the form. Given that I
have not found it possible to have the controls in the inner layout panels
reflow when the form is resized. I am snipping some of that complexity now
that I am using Flow Break though so hopefully that will fix the problem (I
have gotten test apps working as I want with just a flow panel inside one
cell of a table, and I did not yet know about flow breaks when I started on
this little project).

Thanks for the response. We'll see how it goes.

-Dave
 
Back
Top