Die Anpassung würde ich im Ereignis OnShow() der Form2 machen. Eine entsprechend erweiterte Form kannst du dann als Vorlage in der Galerie speichern.
Delphi-Quellcode:
procedure TForm2.FormShow(Sender: TObject);
begin
Left := Application.MainForm.Left;
Top := Application.MainForm.Top;
Width := Application.MainForm.Width;
Height := Application.MainForm.Height;
WindowState := Application.MainForm.WindowState;
end;
Grüße vom marabu