-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSongList.dfm
70 lines (70 loc) · 1.36 KB
/
SongList.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
object FSongList: TFSongList
Left = 131
Top = 146
Width = 1036
Height = 469
Caption = 'Song List'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnResize = FormResize
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object sgSongs: TListView
Left = 0
Top = 0
Width = 1028
Height = 442
Align = alClient
BevelEdges = []
BevelInner = bvNone
BevelOuter = bvNone
Columns = <
item
Caption = 'Title'
Width = 290
end
item
Caption = 'Alt Title'
Width = 200
end
item
Caption = 'Author'
Width = 176
end
item
Caption = 'Date'
Width = 40
end
item
Caption = 'Copyright'
Width = 180
end
item
Caption = 'CCLI'
Width = 66
end
item
AutoSize = True
Caption = 'Projected'
end>
GridLines = True
HideSelection = False
IconOptions.AutoArrange = True
OwnerData = True
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnColumnClick = sgSongsColumnClick
OnData = sgSongsData
OnKeyDown = sgSongsKeyDown
OnSelectItem = sgSongsSelectItem
end
end