Browse Subversion Repository
Annotation of /Unit3.pas
Parent Directory
| Revision Log
Revision 1 -
( hide annotations)
( download)
( as text)
Mon Jul 27 13:44:42 2015 UTC
(8 years, 8 months ago)
by yamat0jp
File MIME type: text/x-pascal
File size: 418 byte(s)
最初のコミット
| 1 |
yamat0jp |
1 |
unit Unit3; |
| 2 |
|
|
|
| 3 |
|
|
interface |
| 4 |
|
|
|
| 5 |
|
|
uses |
| 6 |
|
|
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, |
| 7 |
|
|
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls; |
| 8 |
|
|
|
| 9 |
|
|
type |
| 10 |
|
|
TForm3 = class(TForm) |
| 11 |
|
|
Label1: TLabel; |
| 12 |
|
|
private |
| 13 |
|
|
{ private éž } |
| 14 |
|
|
public |
| 15 |
|
|
{ public éž } |
| 16 |
|
|
end; |
| 17 |
|
|
|
| 18 |
|
|
var |
| 19 |
|
|
Form3: TForm3; |
| 20 |
|
|
|
| 21 |
|
|
implementation |
| 22 |
|
|
|
| 23 |
|
|
{$R *.fmx} |
| 24 |
|
|
{$R *.LgXhdpiTb.fmx ANDROID} |
| 25 |
|
|
|
| 26 |
|
|
end. |
|