-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathItemSelectForm.dfm
58 lines (58 loc) · 1.14 KB
/
ItemSelectForm.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
object fItemSelectForm: TfItemSelectForm
Left = 745
Top = 120
BorderStyle = bsDialog
Caption = 'fItemSelectForm'
ClientHeight = 596
ClientWidth = 520
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object lblItems: TLabel
Left = 8
Top = 8
Width = 31
Height = 13
Caption = 'Items:'
end
object lbItems: TListBox
Left = 8
Top = 24
Width = 505
Height = 534
Style = lbOwnerDrawFixed
IntegralHeight = True
ItemHeight = 53
TabOrder = 0
OnClick = lbItemsClick
OnDblClick = lbItemsDblClick
OnDrawItem = lbItemsDrawItem
end
object btnAccept: TButton
Left = 344
Top = 564
Width = 81
Height = 25
Caption = 'Accept'
TabOrder = 1
OnClick = btnAcceptClick
end
object btnCancel: TButton
Left = 432
Top = 564
Width = 81
Height = 25
Caption = 'Cancel'
TabOrder = 2
OnClick = btnCancelClick
end
end