-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTitleSearch.dfm
86 lines (86 loc) · 1.74 KB
/
TitleSearch.dfm
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
object FTitle: TFTitle
Left = 622
Top = 394
Width = 269
Height = 232
ActiveControl = ESong
BorderIcons = [biSystemMenu, biMinimize]
Caption = 'Quick Title Search'
Color = clBtnFace
DefaultMonitor = dmDesktop
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnActivate = FormActivate
OnCanResize = FormCanResize
OnClose = FormClose
OnShow = FormShow
DesignSize = (
253
194)
PixelsPerInch = 96
TextHeight = 13
object ESong: TEdit
Left = 8
Top = 8
Width = 245
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
OnChange = ESongChange
OnKeyDown = ESongKeyDown
end
object LBSongs: TListBox
Left = 8
Top = 32
Width = 245
Height = 136
Style = lbOwnerDrawFixed
Anchors = [akLeft, akTop, akRight, akBottom]
ItemHeight = 13
TabOrder = 1
OnClick = LBSongsClick
OnDblClick = LBSongsDblClick
OnDrawItem = LBSongsDrawItem
OnEnter = LBSongsEnter
OnKeyDown = LBSongsKeyDown
end
object PButtons: TPanel
Left = 50
Top = 169
Width = 166
Height = 25
Anchors = [akBottom]
AutoSize = True
BevelOuter = bvNone
TabOrder = 2
DesignSize = (
166
25)
object BOk: TButton
Left = 92
Top = 0
Width = 74
Height = 25
Anchors = [akRight, akBottom]
Caption = 'OK'
Default = True
TabOrder = 0
OnClick = BOkClick
end
object BCancel: TButton
Left = 0
Top = 0
Width = 74
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
TabOrder = 1
OnClick = BCancelClick
end
end
end