Created
May 9, 2016 20:08
-
-
Save JordiCorbilla/8f02b74149196bcb915bd54701b9e714 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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