-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathunit1.lfm
82 lines (82 loc) · 1.67 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
object Form1: TForm1
Left = 323
Height = 480
Top = 107
Width = 640
Caption = 'Edit'
ClientHeight = 480
ClientWidth = 640
Menu = MainMenu1
Position = poScreenCenter
LCLVersion = '4.99.0.0'
OnCreate = FormCreate
OnResize = FormResize
object Label1: TLabel
Left = 0
Height = 479
Top = 0
Width = 512
Alignment = taCenter
Anchors = [akTop, akLeft, akRight, akBottom]
AutoSize = False
Caption = 'Label1'
Font.Height = 169
Layout = tlCenter
OptimalFill = True
ParentFont = False
end
object Button1: TButton
Left = 517
Height = 25
Top = 447
Width = 112
Anchors = [akRight, akBottom]
Caption = 'Next Number'
TabOrder = 0
OnClick = Button1Click
end
object ListBox1: TListBox
Left = 517
Height = 415
Top = 24
Width = 112
Anchors = [akTop, akRight, akBottom]
ItemHeight = 0
TabOrder = 1
TopIndex = -1
end
object Label2: TLabel
Left = 517
Height = 16
Top = 0
Width = 43
Anchors = [akTop, akRight]
Caption = 'History'
end
object MainMenu1: TMainMenu
Left = 24
Top = 16
object MenuItem1: TMenuItem
Caption = 'File'
object MenuItem4: TMenuItem
Caption = 'Start new round'
OnClick = MenuItem4Click
end
object MenuItem2: TMenuItem
Caption = 'Print cards'
OnClick = MenuItem2Click
end
object MenuItem3: TMenuItem
Caption = 'Close'
OnClick = MenuItem3Click
end
end
object MenuItem5: TMenuItem
Caption = 'Edit'
object MenuItem6: TMenuItem
Caption = 'Settings'
OnClick = MenuItem6Click
end
end
end
end