-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuLaunchFileForm.dfm
More file actions
80 lines (80 loc) · 1.69 KB
/
uLaunchFileForm.dfm
File metadata and controls
80 lines (80 loc) · 1.69 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
object LaunchFileForm: TLaunchFileForm
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
Caption = 'LaunchFileForm'
ClientHeight = 191
ClientWidth = 479
Color = clBtnFace
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
KeyPreview = True
Position = poScreenCenter
OnCreate = FormCreate
OnResize = FormResize
TextHeight = 15
object InstancesTreeView: TTreeView
Left = 0
Top = 0
Width = 479
Height = 154
Align = alClient
BorderStyle = bsNone
HideSelection = False
Indent = 19
ReadOnly = True
RowSelect = True
ShowLines = False
ShowRoot = False
TabOrder = 0
OnChange = InstancesTreeViewChange
OnChanging = InstancesTreeViewChanging
OnCollapsing = InstancesTreeViewCollapsing
OnCustomDrawItem = InstancesTreeViewCustomDrawItem
OnDblClick = InstancesTreeViewDblClick
end
object ButtonsPanel: TPanel
Left = 0
Top = 154
Width = 479
Height = 37
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
DesignSize = (
479
37)
object OpenButton: TButton
Left = 384
Top = 6
Width = 75
Height = 25
Anchors = [akTop, akRight]
Caption = 'Open'
Default = True
ModalResult = 1
TabOrder = 0
end
object CancelButton: TButton
Left = 296
Top = 6
Width = 75
Height = 25
Anchors = [akTop, akRight]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
end
object RefreshInstancesTimer: TTimer
Interval = 10000
OnTimer = RefreshDisplay
Left = 64
Top = 16
end
end