-
Notifications
You must be signed in to change notification settings - Fork 1
/
unit1.lfm
123 lines (123 loc) · 1.92 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
object Form1: TForm1
Left = 0
Height = 528
Top = 0
Width = 696
Caption = 'Form1'
ClientHeight = 528
ClientWidth = 696
OnCreate = FormCreate
LCLVersion = '1.0.8.0'
object Image1: TImage
Left = 8
Height = 512
Top = 8
Width = 512
end
object Button1: TButton
Left = 528
Height = 25
Top = 40
Width = 80
Caption = 'Clear'
OnClick = Button1Click
TabOrder = 0
end
object Edit1: TEdit
Left = 528
Height = 23
Top = 8
Width = 80
TabOrder = 1
Text = '100000'
end
object Button2: TButton
Left = 608
Height = 25
Top = 6
Width = 80
Caption = 'Draw'
OnClick = Button2Click
TabOrder = 2
end
object Edit2: TEdit
Left = 544
Height = 23
Top = 72
Width = 72
TabOrder = 3
Text = '256'
end
object Edit3: TEdit
Left = 616
Height = 23
Top = 72
Width = 72
TabOrder = 4
Text = '0'
end
object Edit4: TEdit
Left = 544
Height = 23
Top = 104
Width = 72
TabOrder = 5
Text = '0'
end
object Edit5: TEdit
Left = 616
Height = 23
Top = 104
Width = 72
TabOrder = 6
Text = '448'
end
object Edit6: TEdit
Left = 544
Height = 23
Top = 136
Width = 72
TabOrder = 7
Text = '512'
end
object Edit7: TEdit
Left = 616
Height = 23
Top = 136
Width = 72
TabOrder = 8
Text = '448'
end
object Label1: TLabel
Left = 528
Height = 16
Top = 79
Width = 9
Caption = 'A'
ParentColor = False
end
object Label2: TLabel
Left = 529
Height = 16
Top = 111
Width = 8
Caption = 'B'
ParentColor = False
end
object Label3: TLabel
Left = 528
Height = 16
Top = 143
Width = 9
Caption = 'C'
ParentColor = False
end
object CheckBox1: TCheckBox
Left = 528
Height = 19
Top = 168
Width = 83
Caption = 'Color Mode'
TabOrder = 9
end
end