Home > Back-end >  How to realize the Form shown in the panel Firemonkey?
How to realize the Form shown in the panel Firemonkey?

Time:09-27

How to display in the panel in firemonkey another Form window?
Like the effect in the VCL:
 
Var
Form2: TForm2;
The begin
Form2:=TForm2. Create (self);
Form2. Parent:=Panel1;
Form2. BorderStyle:=bsNone;
Form2. Show;
end;

CodePudding user response:

Still didn't solve?
  • Related