forked from pyscripter/pyscripter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlgPickList.dfm
131 lines (131 loc) · 2.88 KB
/
dlgPickList.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
inherited PickListDialog: TPickListDialog
Caption = 'PickListDialog'
ClientHeight = 333
ClientWidth = 369
ExplicitWidth = 375
ExplicitHeight = 362
PixelsPerInch = 96
TextHeight = 13
object Panel2: TSpTBXPanel
Left = 0
Top = 249
Width = 369
Height = 84
Align = alBottom
Anchors = [akLeft, akBottom]
UseDockManager = True
TabOrder = 1
TBXStyleBackground = True
object Bevel1: TBevel
Left = 0
Top = 36
Width = 404
Height = 2
Shape = bsTopLine
end
object btnSelectAll: TSpTBXButton
Left = 66
Top = 6
Width = 114
Height = 24
Caption = '&Select All'
TabOrder = 0
OnClick = mnSelectAllClick
Images = CommandsDataModule.Images
ImageIndex = 104
end
object btnDeselectAll: TSpTBXButton
Left = 186
Top = 6
Width = 114
Height = 24
Caption = '&Deselect All'
TabOrder = 1
OnClick = mnDeselectAllClick
Images = CommandsDataModule.Images
ImageIndex = 105
end
object btnOk: TSpTBXButton
Left = 92
Top = 52
Width = 75
Height = 25
Caption = '&OK'
TabOrder = 2
Default = True
ModalResult = 1
end
object btnCancel: TSpTBXButton
Left = 199
Top = 52
Width = 75
Height = 25
Caption = '&Cancel'
TabOrder = 3
Cancel = True
ModalResult = 2
end
end
object SpTBXPanel1: TSpTBXPanel
Left = 0
Top = 0
Width = 369
Height = 249
Caption = 'SpTBXPanel1'
Align = alClient
TabOrder = 0
TBXStyleBackground = True
DesignSize = (
369
249)
object imgIcon: TImage
Left = 8
Top = 12
Width = 32
Height = 32
Transparent = True
end
object lbMessage: TSpTBXLabel
Left = 56
Top = 8
Width = 305
Height = 6
Anchors = [akLeft, akTop, akRight]
Wrapping = twWrap
end
object CheckListBox: TSpTBXCheckListBox
AlignWithMargins = True
Left = 5
Top = 64
Width = 359
Height = 180
Align = alBottom
BevelInner = bvNone
BevelOuter = bvNone
BevelKind = bkSoft
ItemHeight = 13
PopupMenu = PickListPopUp
Style = lbStandard
TabOrder = 0
ExplicitLeft = 7
ExplicitTop = 66
end
end
object PickListPopUp: TPopupMenu
Images = CommandsDataModule.Images
Left = 296
Top = 112
object mnSelectAll: TMenuItem
Caption = '&Select All'
Hint = 'Select all items'
ImageIndex = 104
OnClick = mnSelectAllClick
end
object mnDeselectAll: TMenuItem
Caption = '&Deselect All'
Hint = 'Deselect all items'
ImageIndex = 105
OnClick = mnDeselectAllClick
end
end
end