Develop and Download Open Source Software

Browse Subversion Repository

Contents of /Unit3.pas

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3 - (show annotations) (download) (as text)
Tue Jul 28 12:15:19 2015 UTC (8 years, 10 months ago) by yamat0jp
File MIME type: text/x-pascal
File size: 690 byte(s)
更新中の表示を更新

スレッドの管理を見直し

StyleBoolはイメージに合うのがなくいじれませんでした、暗がりで白い画面を見るのは目に負担かなと思いました
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 Panel1: TPanel;
13 Button1: TButton;
14 procedure Button1Click(Sender: TObject);
15 private
16 { private éŒž }
17 public
18 { public éŒž }
19 end;
20
21 var
22 Form3: TForm3;
23
24 implementation
25
26 {$R *.fmx}
27
28 uses Unit1;
29 {$R *.LgXhdpiTb.fmx ANDROID}
30
31 procedure TForm3.Button1Click(Sender: TObject);
32 begin
33 with Form1.th do
34 begin
35 Terminate;
36 WaitFor;
37 FreeAndNil(Form1.th);
38 end;
39 Hide;
40 end;
41
42 end.

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26