Felix. 0 Posted November 23, 2021 Which component do you use to create a toolbar with buttons (TToolbar, TRectangle, TPanel?) in your Firemonkey projects and why? Thanks! Share this post Link to post
Rollo62 536 Posted November 24, 2021 (edited) I always try to use most basic components, to reduce possible problems. Like TToolbar => TLayout, and nested TLayout's for all other grouping when necessary, all together with TAlignLayout and Margins to achieve a responsive behaviour. Buttons I use TAlignLayout.Left, with Margins Left, Top, Bottom, so I can nicely arrange them one after the other. Edited November 24, 2021 by Rollo62 1 Share this post Link to post
Felix. 0 Posted November 24, 2021 5 hours ago, Rollo62 said: I always try to use most basic components, to reduce possible problems. Like TToolbar => TLayout, and nested TLayout's for all other grouping when necessary, all together with TAlignLayout and Margins to achieve a responsive behaviour. Buttons I use TAlignLayout.Left, with Margins Left, Top, Bottom, so I can nicely arrange them one after the other. Can you show the screenshot of what you achieve? Just as an example. Thank you Share this post Link to post