-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit1.lfm
59 lines (59 loc) · 1.21 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
object Form1: TForm1
Left = 492
Height = 435
Top = 109
Width = 594
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Tutorials 19: Basic pixel'
ClientHeight = 435
ClientWidth = 594
OnActivate = FormActivate
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnKeyUp = FormKeyUp
LCLVersion = '1.4.2.0'
object PaintBox2: TPaintBox
Left = 8
Height = 344
Top = 72
Width = 576
OnMouseDown = PaintBox2MouseDown
OnMouseUp = PaintBox2MouseUp
end
object Label3: TLabel
Left = 296
Height = 16
Top = 0
Width = 125
Caption = 'Tutorials 19: Basic pixel'
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
object Button1: TButton
Left = 24
Height = 38
Top = 24
Width = 88
Caption = 'Enable H.Cos'
OnClick = Button1Click
TabOrder = 0
end
object Button2: TButton
Left = 124
Height = 36
Top = 25
Width = 127
Caption = 'Enable Triangle'
OnClick = Button2Click
TabOrder = 1
end
end