-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathunit1.lfm
94 lines (94 loc) · 1.77 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
object Form1: TForm1
Left = 1260
Height = 633
Top = 317
Width = 791
AllowDropFiles = True
Caption = 'Form1'
ClientHeight = 633
ClientWidth = 791
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnCreate = FormCreate
OnDropFiles = FormDropFiles
object GroupBox1: TGroupBox
Left = 0
Height = 72
Top = 0
Width = 791
Align = alTop
Caption = ' Location '
ClientHeight = 55
ClientWidth = 789
TabOrder = 0
object Edit1: TEdit
Left = 8
Height = 26
Top = 0
Width = 664
Anchors = [akTop, akLeft, akRight]
TabOrder = 0
Text = 'Edit1'
OnKeyPress = Edit1KeyPress
end
object Button2: TButton
Left = 680
Height = 25
Top = 1
Width = 27
Anchors = [akTop, akRight]
Caption = 'R'
TabOrder = 1
OnClick = Button2Click
end
object CheckBox1: TCheckBox
Left = 8
Height = 22
Top = 32
Width = 191
Caption = 'ignore hidden files / folders'
Checked = True
State = cbChecked
TabOrder = 2
OnClick = CheckBox1Click
end
end
object Button1: TButton
Left = 0
Height = 25
Top = 608
Width = 791
Align = alBottom
Caption = 'Close'
TabOrder = 1
OnClick = Button1Click
end
object StatusBar1: TStatusBar
Left = 0
Height = 24
Top = 584
Width = 791
Panels = <
item
Width = 100
end
item
Width = 50
end>
SimplePanel = False
end
object Button3: TButton
Left = 716
Height = 25
Top = 16
Width = 68
Anchors = [akTop, akRight]
Caption = 'Load'
TabOrder = 3
OnClick = Button3Click
end
object SelectDirectoryDialog1: TSelectDirectoryDialog
Left = 88
Top = 80
end
end