-
Notifications
You must be signed in to change notification settings - Fork 8
/
unit3.lfm
47 lines (47 loc) · 840 Bytes
/
unit3.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
object Form3: TForm3
Left = 730
Height = 106
Top = 378
Width = 320
BorderStyle = bsDialog
Caption = 'Settings'
ClientHeight = 106
ClientWidth = 320
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '1.6.2.0'
object cbRunOnStartup: TCheckBox
Left = 9
Height = 19
Top = 11
Width = 150
Caption = 'Run on Windows startup'
TabOrder = 0
end
object cbLoop: TCheckBox
Left = 9
Height = 19
Top = 40
Width = 84
Caption = 'Loop videos'
TabOrder = 1
end
object Button1: TButton
Left = 9
Height = 25
Top = 72
Width = 75
Caption = 'Save'
OnClick = Button1Click
TabOrder = 2
end
object Button2: TButton
Left = 232
Height = 25
Top = 72
Width = 75
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
end