Thema
:
FMX Form in einen anderen einbetten
Einzelnen Beitrag anzeigen
Rollo62
Online
Registriert seit: 15. Mär 2007
4.095 Beiträge
Delphi 12 Athens
#
4
AW: FMX Form in einen anderen einbetten
14. Sep 2017, 20:16
Probier mal das hier :
zusammenfalten
·
markieren
Delphi-Quellcode:
// AForm is newly created externally and then can be
//embedded to a control, such as a panel or a tabsheet.
procedure
Form_Embed_To(
const
AForm:TCustomForm;
const
AParent:TControl);
var
chld: TFmxObject;
I: Integer;
begin
if
Assigned( AParent )
then
begin
AParent.BeginUpdate;
I := 0;
while
AForm.ChildrenCount > 0
do
begin
chld := AForm.Children[I];
if
chld.
Name
<> '
'
then
AForm.Children[I].Parent := AParent
else
Inc(I);
end
;
AParent.EndUpdate;
end
;
end
;
Rollo
Zitat
Rollo62
Öffentliches Profil ansehen
Mehr Beiträge von Rollo62 finden