-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit1.lfm
86 lines (86 loc) · 1.63 KB
/
unit1.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
object Form1: TForm1
Left = 292
Height = 435
Top = 75
Width = 594
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Tutorials 16: Basic custom flow'
ClientHeight = 435
ClientWidth = 594
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '1.4.2.0'
object Button1: TButton
Left = 224
Height = 40
Top = 24
Width = 72
Caption = 'Start Loop'
OnClick = Button1Click
TabOrder = 0
TabStop = False
end
object Button2: TButton
Left = 296
Height = 40
Top = 24
Width = 72
Caption = '50 Frame'
OnClick = Button2Click
TabOrder = 1
TabStop = False
end
object Button3: TButton
Left = 368
Height = 40
Top = 24
Width = 72
Caption = '35 Frame'
OnClick = Button3Click
TabOrder = 2
TabStop = False
end
object Button4: TButton
Left = 512
Height = 40
Top = 24
Width = 72
Caption = 'Stop'
OnClick = Button4Click
TabOrder = 3
TabStop = False
end
object PaintBox2: TPaintBox
Left = 8
Height = 344
Top = 72
Width = 576
end
object Button5: TButton
Left = 440
Height = 40
Top = 24
Width = 72
Caption = '10 Frame'
OnClick = Button5Click
TabOrder = 4
TabStop = False
end
object Label3: TLabel
Left = 296
Height = 16
Top = 0
Width = 157
Caption = 'Tutorials 16: Test particle flow'
Font.CharSet = ANSI_CHARSET
Font.Height = -13
Font.Name = 'Arial Narrow'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
end