Firemonkey and dockable forms

Is it possible to have attachable forms in FireMonkey, since I checked the properties of the forms, and there is no such property for this. Is there any way around this?

+3
source share
1 answer

Nothing is built in there as far as I know, but it should not be too difficult to add to yourself. Just keep in mind that any form may have parental control over another form:

In the child form, add any controls inside the container (e.g. TLayout). Create a child form. Set the parent property of TLayout (etc.) to the parent form (or, more likely, the container in the parent form so that you can set the alignment of the child TLayout to alClient).

, .

+2

All Articles