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?
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?
Try using the WindowState
property like so
WindowState := TWindowState.wsMinimized;