Reputation: 3298
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?
Upvotes: 4
Views: 4397
Reputation: 136391
Try using the WindowState
property like so
WindowState := TWindowState.wsMinimized;
Upvotes: 9