2

I use this:

Application.Minimize;

in Vcl delphi application, but in Firemonkey I've got Undeclared identifire error.

How can I minimize my firemonkey form?

David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490
sma6871
  • 3,198
  • 3
  • 38
  • 52

1 Answers1

6

Try using the WindowState property like so

WindowState := TWindowState.wsMinimized;
RRUZ
  • 134,889
  • 20
  • 356
  • 483