delphi - Minimize form in Firemonkey application -
i use this:
application.minimize;
in vcl delphi application, in firemonkey i've got undeclared identifire error.
how can minimize firemonkey form?
try using windowstate
property
windowstate := twindowstate.wsminimized;
Comments
Post a Comment