Skip to content

Instantly share code, notes, and snippets.

@JordiCorbilla
Created May 9, 2016 20:08
Show Gist options
  • Save JordiCorbilla/8f02b74149196bcb915bd54701b9e714 to your computer and use it in GitHub Desktop.
Save JordiCorbilla/8f02b74149196bcb915bd54701b9e714 to your computer and use it in GitHub Desktop.
unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.fmx}
procedure TForm1.Button1Click(Sender: TObject);
begin
showMessage('Delphi XE5 Rocks');
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment