-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathunit1.lfm
More file actions
90 lines (90 loc) · 1.65 KB
/
unit1.lfm
File metadata and controls
90 lines (90 loc) · 1.65 KB
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
object Form1: TForm1
Left = 619
Height = 465
Top = 125
Width = 669
Caption = 'Form1'
ClientHeight = 465
ClientWidth = 669
LCLVersion = '4.99.0.0'
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
object Label1: TLabel
Left = 80
Height = 16
Top = 8
Width = 38
Caption = 'Select:'
ParentColor = False
end
object ComboBox1: TComboBox
Left = 120
Height = 30
Top = 8
Width = 312
ItemHeight = 0
Style = csDropDownList
TabOrder = 0
end
object Button1: TButton
Left = 440
Height = 30
Top = 8
Width = 131
Caption = 'Use Joystick'
TabOrder = 1
OnClick = Button1Click
end
object Label2: TLabel
Left = 80
Height = 16
Top = 48
Width = 38
Caption = 'Select:'
ParentColor = False
end
object ComboBox2: TComboBox
Left = 120
Height = 30
Top = 48
Width = 312
ItemHeight = 0
Style = csDropDownList
TabOrder = 2
end
object Button2: TButton
Left = 440
Height = 30
Top = 48
Width = 131
Caption = 'Use GameController'
TabOrder = 3
OnClick = Button2Click
end
object Button3: TButton
Left = 584
Height = 70
Top = 8
Width = 75
Caption = 'Unload'
Enabled = False
TabOrder = 4
OnClick = Button3Click
end
object Button4: TButton
Left = 8
Height = 70
Top = 8
Width = 67
Caption = 'Refresh'
TabOrder = 5
OnClick = Button4Click
end
object Timer1: TTimer
Enabled = False
Interval = 1
OnTimer = Timer1Timer
Left = 32
Top = 96
end
end