HD Multi-Device Application

From RAD Studio
Jump to: navigation, search

Go Up to File Menu


File > New > Multi-Device Application - Delphi > Blank Application
File > New > Multi-Device Application - C++Builder > Blank Application

On the Multi-Device Application wizard, selecting the Blank Application icon creates the framework for an HD multi-device application. The Form Designer opens, displaying the base form (FMX.Forms.TForm). Your new multi-device application is configured by default with all the supported target platforms.

For every multi-device application, the form file has the extension .fmx.

Uses (Delphi)

For a Delphi HD multi-device application, the uses section of the .pas file contains the following units (including unit scope names):

uses
  System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
  FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs;

Includes (C++)

For a C++ HD multi-device application, the header file includes the following units:

#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>

See Also