Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
95
GridBagLayout with Resizale User Controls
posted

Hi,

we used GridBagLayoutManager to layout arbitrary nmber of user controls. And users requested to resize those user controls after intial layout.

How do we accomplish this:

(1) some other layout control /Manager frolm infragistic ?

(2) Write your own Layout Manager of Panel Controls ? ( such as one using SpliterContainer)

(3) Some Hidden feature of GridBagLayoutManager setting ( or ask for an enhancement )

(4) Render User Control in a grid ?

Thanks

Jimmy

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi Jimmy,

    There's nothing built-in to GridBagLayoutManager to allow the users to resize individual controls. Resizing the container will resize the controls within it, of course.

    If your users need to resize individual controls, then you will need to use something like the UltraSplitter, Splitter, or SplitContainer. In theory, you could also use a WinGrid, I suppose and use the UltraControlContainerEditor to embed controls within it. It depends on the needs of your application.

Children