sma6871
sma6871

Reputation: 3298

Minimize form in Firemonkey application

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

Answers (1)

RRUZ
RRUZ

Reputation: 136391

Try using the WindowState property like so

WindowState := TWindowState.wsMinimized;

Upvotes: 9

Related Questions