Zitat von Marc Santhoff <[EMAIL PROTECTED]>: > Hi, > > is there something like Javas layout managers available for Lazarus? > > I think a simple TBorderLayout would suffice, although I'd like to know > other approaches that are similarly easy to use, especially when writing > form building code by hand. Or maybe a tutorial explaning how to use > Lazarus' standard classes in an efficient way. > > The only thing I found so far is the widgetgrid from MSEgui - that could > be a starting point.
'borderlayout' is simply achieved by setting the Align property of each component. You can use TPanels without borders and caption (invisible) to get more control. You can easily create grids with the ChildSizing properties. And you can create more sophisticated layouts with Anchors (View / Anchor Editor). Mattias _______________________________________________ Lazarus mailing list [email protected] http://www.lazarus.freepascal.org/mailman/listinfo/lazarus
