mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-18 07:29:30 +02:00
ide: extending listview items editor control width and reanchoring them (now at least russian labels fit to width) (issue #0009370)
git-svn-id: trunk@11713 -
This commit is contained in:
parent
bc592261fd
commit
dfd84ee746
@ -1,193 +1,233 @@
|
||||
object ListViewItemsEditorForm: TListViewItemsEditorForm
|
||||
Left = 313
|
||||
Height = 246
|
||||
Top = 194
|
||||
Width = 510
|
||||
HorzScrollBar.Page = 509
|
||||
VertScrollBar.Page = 245
|
||||
ActiveControl = BtnOK
|
||||
BorderIcons = [biSystemMenu, biHelp]
|
||||
Caption = 'ListView Items Editor'
|
||||
ClientHeight = 246
|
||||
ClientWidth = 487
|
||||
ClientWidth = 510
|
||||
Constraints.MinHeight = 200
|
||||
Constraints.MinWidth = 400
|
||||
OnCreate = FormCreate
|
||||
PixelsPerInch = 96
|
||||
Position = poScreenCenter
|
||||
HorzScrollBar.Page = 486
|
||||
VertScrollBar.Page = 245
|
||||
Left = 313
|
||||
Height = 246
|
||||
Top = 194
|
||||
Width = 487
|
||||
object BtnOK: TBitBtn
|
||||
Left = 189
|
||||
Height = 25
|
||||
Top = 214
|
||||
Width = 75
|
||||
Anchors = [akRight, akBottom]
|
||||
|
||||
Caption = '&OK'
|
||||
Kind = bkOK
|
||||
ModalResult = 1
|
||||
NumGlyphs = 0
|
||||
TabOrder = 0
|
||||
Left = 166
|
||||
end
|
||||
object BtnCancel: TBitBtn
|
||||
Left = 269
|
||||
Height = 25
|
||||
Top = 214
|
||||
Width = 75
|
||||
end
|
||||
object BtnCancel: TBitBtn
|
||||
Anchors = [akRight, akBottom]
|
||||
|
||||
Cancel = True
|
||||
Caption = 'Cancel'
|
||||
Kind = bkCancel
|
||||
ModalResult = 2
|
||||
NumGlyphs = 0
|
||||
TabOrder = 1
|
||||
Left = 246
|
||||
end
|
||||
object BtnApply: TBitBtn
|
||||
Left = 349
|
||||
Height = 25
|
||||
Top = 214
|
||||
Width = 75
|
||||
end
|
||||
object BtnApply: TBitBtn
|
||||
Anchors = [akRight, akBottom]
|
||||
|
||||
Caption = '&Apply'
|
||||
NumGlyphs = 0
|
||||
OnClick = btnApplyClick
|
||||
TabOrder = 2
|
||||
Left = 326
|
||||
end
|
||||
object BtnHelp: TBitBtn
|
||||
Left = 429
|
||||
Height = 25
|
||||
Top = 214
|
||||
Width = 75
|
||||
end
|
||||
object BtnHelp: TBitBtn
|
||||
Anchors = [akRight, akBottom]
|
||||
|
||||
Caption = '&Help'
|
||||
Kind = bkHelp
|
||||
NumGlyphs = 0
|
||||
TabOrder = 3
|
||||
Left = 406
|
||||
Height = 25
|
||||
Top = 214
|
||||
Width = 75
|
||||
end
|
||||
object GroupBox1: TGroupBox
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
Caption = 'Items'
|
||||
ClientHeight = 180
|
||||
ClientWidth = 276
|
||||
TabOrder = 4
|
||||
Left = 8
|
||||
Height = 198
|
||||
Top = 8
|
||||
Width = 280
|
||||
Width = 293
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
Caption = 'Items'
|
||||
ClientHeight = 180
|
||||
ClientWidth = 289
|
||||
TabOrder = 4
|
||||
object TreeView1: TTreeView
|
||||
AnchorSideLeft.Control = GroupBox1
|
||||
AnchorSideTop.Control = GroupBox1
|
||||
AnchorSideBottom.Control = GroupBox1
|
||||
AnchorSideBottom.Side = asrBottom
|
||||
Left = 5
|
||||
Height = 170
|
||||
Top = 5
|
||||
Width = 162
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
BorderSpacing.Left = 5
|
||||
BorderSpacing.Top = 5
|
||||
BorderSpacing.Bottom = 5
|
||||
DefaultItemHeight = 15
|
||||
HideSelection = False
|
||||
TabOrder = 0
|
||||
OnSelectionChanged = TreeView1SelectionChanged
|
||||
Options = [tvoAutoItemHeight, tvoKeepCollapsedNodes, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips]
|
||||
Left = 6
|
||||
Height = 173
|
||||
Width = 185
|
||||
end
|
||||
object BtnNewItem: TButton
|
||||
Anchors = [akTop, akRight]
|
||||
|
||||
Tag = 1
|
||||
AnchorSideLeft.Control = TreeView1
|
||||
AnchorSideLeft.Side = asrBottom
|
||||
AnchorSideTop.Control = GroupBox1
|
||||
AnchorSideRight.Control = GroupBox1
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 172
|
||||
Height = 25
|
||||
Top = 5
|
||||
Width = 112
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
BorderSpacing.Left = 5
|
||||
BorderSpacing.Top = 5
|
||||
BorderSpacing.Right = 5
|
||||
BorderSpacing.InnerBorder = 4
|
||||
Caption = '&New Item'
|
||||
Default = True
|
||||
OnClick = BtnNewItemClick
|
||||
TabOrder = 1
|
||||
Left = 198
|
||||
Height = 25
|
||||
Top = 4
|
||||
Width = 75
|
||||
Tag = 1
|
||||
end
|
||||
object BtnNewSubItem: TButton
|
||||
Anchors = [akTop, akRight]
|
||||
|
||||
AnchorSideLeft.Control = BtnNewItem
|
||||
AnchorSideTop.Control = BtnNewItem
|
||||
AnchorSideTop.Side = asrBottom
|
||||
AnchorSideRight.Control = BtnNewItem
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 172
|
||||
Height = 25
|
||||
Top = 35
|
||||
Width = 112
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
BorderSpacing.Top = 5
|
||||
BorderSpacing.InnerBorder = 4
|
||||
Caption = 'N&ew SubItem'
|
||||
OnClick = BtnNewItemClick
|
||||
TabOrder = 2
|
||||
Left = 198
|
||||
Height = 25
|
||||
Top = 36
|
||||
Width = 75
|
||||
end
|
||||
object BtnDelete: TButton
|
||||
Anchors = [akTop, akRight]
|
||||
|
||||
AnchorSideLeft.Control = BtnNewSubItem
|
||||
AnchorSideTop.Control = BtnNewSubItem
|
||||
AnchorSideTop.Side = asrBottom
|
||||
AnchorSideRight.Control = BtnNewSubItem
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 172
|
||||
Height = 25
|
||||
Top = 65
|
||||
Width = 112
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
BorderSpacing.Top = 5
|
||||
BorderSpacing.InnerBorder = 4
|
||||
Caption = '&Delete'
|
||||
OnClick = btnDeleteClick
|
||||
TabOrder = 3
|
||||
Left = 198
|
||||
Height = 25
|
||||
Top = 70
|
||||
Width = 75
|
||||
end
|
||||
end
|
||||
object GroupBox2: TGroupBox
|
||||
Left = 299
|
||||
Height = 198
|
||||
Top = 8
|
||||
Width = 205
|
||||
Anchors = [akTop, akRight, akBottom]
|
||||
Caption = 'Item Properties'
|
||||
ClientHeight = 180
|
||||
ClientWidth = 181
|
||||
ClientWidth = 201
|
||||
TabOrder = 5
|
||||
Left = 296
|
||||
Height = 198
|
||||
Top = 8
|
||||
Width = 185
|
||||
object LabelCaption: TLabel
|
||||
AnchorSideLeft.Control = GroupBox2
|
||||
AnchorSideTop.Control = GroupBox2
|
||||
Left = 5
|
||||
Height = 14
|
||||
Top = 5
|
||||
Width = 42
|
||||
BorderSpacing.Left = 5
|
||||
BorderSpacing.Top = 5
|
||||
Caption = 'Caption:'
|
||||
Color = clNone
|
||||
FocusControl = edtText
|
||||
ParentColor = False
|
||||
Left = 8
|
||||
Height = 14
|
||||
Top = 10
|
||||
Width = 42
|
||||
end
|
||||
object LabelImageIndex: TLabel
|
||||
AnchorSideLeft.Control = LabelCaption
|
||||
AnchorSideTop.Control = LabelCaption
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 5
|
||||
Height = 14
|
||||
Top = 39
|
||||
Width = 66
|
||||
BorderSpacing.Top = 20
|
||||
Caption = 'Image Index:'
|
||||
Color = clNone
|
||||
FocusControl = edtIndexImg
|
||||
ParentColor = False
|
||||
Left = 9
|
||||
Height = 14
|
||||
Top = 44
|
||||
Width = 66
|
||||
end
|
||||
object LabelStateIndex: TLabel
|
||||
AnchorSideLeft.Control = LabelImageIndex
|
||||
AnchorSideTop.Control = LabelImageIndex
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 5
|
||||
Height = 14
|
||||
Top = 73
|
||||
Width = 62
|
||||
BorderSpacing.Top = 20
|
||||
Caption = 'State Index:'
|
||||
Color = clNone
|
||||
FocusControl = edtIndexState
|
||||
ParentColor = False
|
||||
Visible = False
|
||||
Left = 8
|
||||
Height = 14
|
||||
Top = 78
|
||||
Width = 62
|
||||
end
|
||||
object edtText: TEdit
|
||||
AnchorSideTop.Control = LabelCaption
|
||||
AnchorSideTop.Side = asrCenter
|
||||
Left = 106
|
||||
Height = 23
|
||||
Top = 1
|
||||
Width = 91
|
||||
OnChange = Edit1Change
|
||||
TabOrder = 0
|
||||
Left = 86
|
||||
Height = 23
|
||||
Top = 4
|
||||
Width = 91
|
||||
end
|
||||
object edtIndexImg: TEdit
|
||||
AnchorSideLeft.Control = edtText
|
||||
AnchorSideTop.Control = LabelImageIndex
|
||||
AnchorSideTop.Side = asrCenter
|
||||
Left = 106
|
||||
Height = 23
|
||||
Top = 35
|
||||
Width = 48
|
||||
OnEditingDone = edtIndexStateEditingDone
|
||||
TabOrder = 1
|
||||
Left = 86
|
||||
Height = 23
|
||||
Top = 38
|
||||
Width = 48
|
||||
end
|
||||
object edtIndexState: TEdit
|
||||
AnchorSideLeft.Control = edtIndexImg
|
||||
AnchorSideTop.Control = LabelStateIndex
|
||||
AnchorSideTop.Side = asrCenter
|
||||
Left = 106
|
||||
Height = 23
|
||||
Top = 69
|
||||
Width = 48
|
||||
OnEditingDone = edtIndexStateEditingDone
|
||||
TabOrder = 2
|
||||
Visible = False
|
||||
Left = 86
|
||||
Height = 23
|
||||
Top = 72
|
||||
Width = 48
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -1,53 +1,80 @@
|
||||
{ Ýòî - ôàéë ðåñóðñîâ, àâòîìàòè÷åñêè ñîçäàííûé lazarus }
|
||||
|
||||
LazarusResources.Add('TListViewItemsEditorForm','FORMDATA',[
|
||||
'TPF0'#24'TListViewItemsEditorForm'#23'ListViewItemsEditorForm'#13'ActiveCont'
|
||||
+'rol'#7#5'BtnOK'#11'BorderIcons'#11#12'biSystemMenu'#6'biHelp'#0#7'Caption'#6
|
||||
+#21'ListView Items Editor'#12'ClientHeight'#3#246#0#11'ClientWidth'#3#231#1
|
||||
+#21'Constraints.MinHeight'#3#200#0#20'Constraints.MinWidth'#3#144#1#8'OnCrea'
|
||||
+'te'#7#10'FormCreate'#13'PixelsPerInch'#2'`'#8'Position'#7#14'poScreenCenter'
|
||||
+#18'HorzScrollBar.Page'#3#230#1#18'VertScrollBar.Page'#3#245#0#4'Left'#3'9'#1
|
||||
+#6'Height'#3#246#0#3'Top'#3#194#0#5'Width'#3#231#1#0#7'TBitBtn'#5'BtnOK'#7'A'
|
||||
+'nchors'#11#7'akRight'#8'akBottom'#0#7'Caption'#6#3'&OK'#4'Kind'#7#4'bkOK'#11
|
||||
+'ModalResult'#2#1#9'NumGlyphs'#2#0#8'TabOrder'#2#0#4'Left'#3#166#0#6'Height'
|
||||
+#2#25#3'Top'#3#214#0#5'Width'#2'K'#0#0#7'TBitBtn'#9'BtnCancel'#7'Anchors'#11
|
||||
+#7'akRight'#8'akBottom'#0#6'Cancel'#9#7'Caption'#6#6'Cancel'#4'Kind'#7#8'bkC'
|
||||
+'ancel'#11'ModalResult'#2#2#9'NumGlyphs'#2#0#8'TabOrder'#2#1#4'Left'#3#246#0
|
||||
+#6'Height'#2#25#3'Top'#3#214#0#5'Width'#2'K'#0#0#7'TBitBtn'#8'BtnApply'#7'An'
|
||||
+'chors'#11#7'akRight'#8'akBottom'#0#7'Caption'#6#6'&Apply'#9'NumGlyphs'#2#0#7
|
||||
+'OnClick'#7#13'btnApplyClick'#8'TabOrder'#2#2#4'Left'#3'F'#1#6'Height'#2#25#3
|
||||
+'Top'#3#214#0#5'Width'#2'K'#0#0#7'TBitBtn'#7'BtnHelp'#7'Anchors'#11#7'akRigh'
|
||||
+'t'#8'akBottom'#0#7'Caption'#6#5'&Help'#4'Kind'#7#6'bkHelp'#9'NumGlyphs'#2#0
|
||||
+#8'TabOrder'#2#3#4'Left'#3#150#1#6'Height'#2#25#3'Top'#3#214#0#5'Width'#2'K'
|
||||
+#0#0#9'TGroupBox'#9'GroupBox1'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8
|
||||
+'akBottom'#0#7'Caption'#6#5'Items'#12'ClientHeight'#3#180#0#11'ClientWidth'#3
|
||||
+#20#1#8'TabOrder'#2#4#4'Left'#2#8#6'Height'#3#198#0#3'Top'#2#8#5'Width'#3#24
|
||||
+#1#0#9'TTreeView'#9'TreeView1'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8
|
||||
+'akBottom'#0#17'DefaultItemHeight'#2#15#13'HideSelection'#8#8'TabOrder'#2#0
|
||||
+#18'OnSelectionChanged'#7#25'TreeView1SelectionChanged'#7'Options'#11#17'tvo'
|
||||
+'AutoItemHeight'#21'tvoKeepCollapsedNodes'#14'tvoShowButtons'#12'tvoShowLine'
|
||||
+'s'#11'tvoShowRoot'#11'tvoToolTips'#0#4'Left'#2#6#6'Height'#3#173#0#5'Width'
|
||||
+#3#185#0#0#0#7'TButton'#10'BtnNewItem'#7'Anchors'#11#5'akTop'#7'akRight'#0#7
|
||||
+'Caption'#6#9'&New Item'#7'Default'#9#7'OnClick'#7#15'BtnNewItemClick'#8'Tab'
|
||||
+'Order'#2#1#4'Left'#3#198#0#6'Height'#2#25#3'Top'#2#4#5'Width'#2'K'#3'Tag'#2
|
||||
+#1#0#0#7'TButton'#13'BtnNewSubItem'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Ca'
|
||||
+'ption'#6#12'N&ew SubItem'#7'OnClick'#7#15'BtnNewItemClick'#8'TabOrder'#2#2#4
|
||||
+'Left'#3#198#0#6'Height'#2#25#3'Top'#2'$'#5'Width'#2'K'#0#0#7'TButton'#9'Btn'
|
||||
+'Delete'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#7'&Delete'#7'OnCli'
|
||||
+'ck'#7#14'btnDeleteClick'#8'TabOrder'#2#3#4'Left'#3#198#0#6'Height'#2#25#3'T'
|
||||
+'op'#2'F'#5'Width'#2'K'#0#0#0#9'TGroupBox'#9'GroupBox2'#7'Anchors'#11#5'akTo'
|
||||
+'p'#7'akRight'#8'akBottom'#0#7'Caption'#6#15'Item Properties'#12'ClientHeigh'
|
||||
+'t'#3#180#0#11'ClientWidth'#3#181#0#8'TabOrder'#2#5#4'Left'#3'('#1#6'Height'
|
||||
+#3#198#0#3'Top'#2#8#5'Width'#3#185#0#0#6'TLabel'#12'LabelCaption'#7'Caption'
|
||||
+#6#8'Caption:'#5'Color'#7#6'clNone'#12'FocusControl'#7#7'edtText'#11'ParentC'
|
||||
+'olor'#8#4'Left'#2#8#6'Height'#2#14#3'Top'#2#10#5'Width'#2'*'#0#0#6'TLabel'
|
||||
+#15'LabelImageIndex'#7'Caption'#6#12'Image Index:'#5'Color'#7#6'clNone'#12'F'
|
||||
+'ocusControl'#7#11'edtIndexImg'#11'ParentColor'#8#4'Left'#2#9#6'Height'#2#14
|
||||
+#3'Top'#2','#5'Width'#2'B'#0#0#6'TLabel'#15'LabelStateIndex'#7'Caption'#6#12
|
||||
+'State Index:'#5'Color'#7#6'clNone'#12'FocusControl'#7#13'edtIndexState'#11
|
||||
+'ParentColor'#8#7'Visible'#8#4'Left'#2#8#6'Height'#2#14#3'Top'#2'N'#5'Width'
|
||||
+#2'>'#0#0#5'TEdit'#7'edtText'#8'OnChange'#7#11'Edit1Change'#8'TabOrder'#2#0#4
|
||||
+'Left'#2'V'#6'Height'#2#23#3'Top'#2#4#5'Width'#2'['#0#0#5'TEdit'#11'edtIndex'
|
||||
+'Img'#13'OnEditingDone'#7#24'edtIndexStateEditingDone'#8'TabOrder'#2#1#4'Lef'
|
||||
+'t'#2'V'#6'Height'#2#23#3'Top'#2'&'#5'Width'#2'0'#0#0#5'TEdit'#13'edtIndexSt'
|
||||
+'ate'#13'OnEditingDone'#7#24'edtIndexStateEditingDone'#8'TabOrder'#2#2#7'Vis'
|
||||
+'ible'#8#4'Left'#2'V'#6'Height'#2#23#3'Top'#2'H'#5'Width'#2'0'#0#0#0#0
|
||||
'TPF0'#24'TListViewItemsEditorForm'#23'ListViewItemsEditorForm'#4'Left'#3'9'#1
|
||||
+#6'Height'#3#246#0#3'Top'#3#194#0#5'Width'#3#254#1#18'HorzScrollBar.Page'#3
|
||||
+#253#1#18'VertScrollBar.Page'#3#245#0#13'ActiveControl'#7#5'BtnOK'#11'Border'
|
||||
+'Icons'#11#12'biSystemMenu'#6'biHelp'#0#7'Caption'#6#21'ListView Items Edito'
|
||||
+'r'#12'ClientHeight'#3#246#0#11'ClientWidth'#3#254#1#21'Constraints.MinHeigh'
|
||||
+'t'#3#200#0#20'Constraints.MinWidth'#3#144#1#8'OnCreate'#7#10'FormCreate'#8
|
||||
+'Position'#7#14'poScreenCenter'#0#7'TBitBtn'#5'BtnOK'#4'Left'#3#189#0#6'Heig'
|
||||
+'ht'#2#25#3'Top'#3#214#0#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8'akBottom'#0
|
||||
+#7'Caption'#6#3'&OK'#4'Kind'#7#4'bkOK'#11'ModalResult'#2#1#9'NumGlyphs'#2#0#8
|
||||
+'TabOrder'#2#0#0#0#7'TBitBtn'#9'BtnCancel'#4'Left'#3#13#1#6'Height'#2#25#3'T'
|
||||
+'op'#3#214#0#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8'akBottom'#0#6'Cancel'#9
|
||||
+#7'Caption'#6#6'Cancel'#4'Kind'#7#8'bkCancel'#11'ModalResult'#2#2#9'NumGlyph'
|
||||
+'s'#2#0#8'TabOrder'#2#1#0#0#7'TBitBtn'#8'BtnApply'#4'Left'#3']'#1#6'Height'#2
|
||||
+#25#3'Top'#3#214#0#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8'akBottom'#0#7'Ca'
|
||||
+'ption'#6#6'&Apply'#9'NumGlyphs'#2#0#7'OnClick'#7#13'btnApplyClick'#8'TabOrd'
|
||||
+'er'#2#2#0#0#7'TBitBtn'#7'BtnHelp'#4'Left'#3#173#1#6'Height'#2#25#3'Top'#3
|
||||
+#214#0#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8'akBottom'#0#7'Caption'#6#5'&'
|
||||
+'Help'#4'Kind'#7#6'bkHelp'#9'NumGlyphs'#2#0#8'TabOrder'#2#3#0#0#9'TGroupBox'
|
||||
+#9'GroupBox1'#4'Left'#2#8#6'Height'#3#198#0#3'Top'#2#8#5'Width'#3'%'#1#7'Anc'
|
||||
+'hors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#7'Caption'#6#5'Items'
|
||||
+#12'ClientHeight'#3#180#0#11'ClientWidth'#3'!'#1#8'TabOrder'#2#4#0#9'TTreeVi'
|
||||
+'ew'#9'TreeView1'#22'AnchorSideLeft.Control'#7#9'GroupBox1'#21'AnchorSideTop'
|
||||
+'.Control'#7#9'GroupBox1'#24'AnchorSideBottom.Control'#7#9'GroupBox1'#21'Anc'
|
||||
+'horSideBottom.Side'#7#9'asrBottom'#4'Left'#2#5#6'Height'#3#170#0#3'Top'#2#5
|
||||
+#5'Width'#3#162#0#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0
|
||||
+#18'BorderSpacing.Left'#2#5#17'BorderSpacing.Top'#2#5#20'BorderSpacing.Botto'
|
||||
+'m'#2#5#17'DefaultItemHeight'#2#15#13'HideSelection'#8#8'TabOrder'#2#0#18'On'
|
||||
+'SelectionChanged'#7#25'TreeView1SelectionChanged'#7'Options'#11#17'tvoAutoI'
|
||||
+'temHeight'#21'tvoKeepCollapsedNodes'#14'tvoShowButtons'#12'tvoShowLines'#11
|
||||
+'tvoShowRoot'#11'tvoToolTips'#0#0#0#7'TButton'#10'BtnNewItem'#3'Tag'#2#1#22
|
||||
+'AnchorSideLeft.Control'#7#9'TreeView1'#19'AnchorSideLeft.Side'#7#9'asrBotto'
|
||||
+'m'#21'AnchorSideTop.Control'#7#9'GroupBox1'#23'AnchorSideRight.Control'#7#9
|
||||
+'GroupBox1'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3#172#0#6'Height'
|
||||
+#2#25#3'Top'#2#5#5'Width'#2'p'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0
|
||||
+#18'BorderSpacing.Left'#2#5#17'BorderSpacing.Top'#2#5#19'BorderSpacing.Right'
|
||||
+#2#5#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#9'&New Item'#7'Default'#9
|
||||
+#7'OnClick'#7#15'BtnNewItemClick'#8'TabOrder'#2#1#0#0#7'TButton'#13'BtnNewSu'
|
||||
+'bItem'#22'AnchorSideLeft.Control'#7#10'BtnNewItem'#21'AnchorSideTop.Control'
|
||||
+#7#10'BtnNewItem'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.C'
|
||||
+'ontrol'#7#10'BtnNewItem'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3
|
||||
+#172#0#6'Height'#2#25#3'Top'#2'#'#5'Width'#2'p'#7'Anchors'#11#5'akTop'#6'akL'
|
||||
+'eft'#7'akRight'#0#17'BorderSpacing.Top'#2#5#25'BorderSpacing.InnerBorder'#2
|
||||
+#4#7'Caption'#6#12'N&ew SubItem'#7'OnClick'#7#15'BtnNewItemClick'#8'TabOrder'
|
||||
+#2#2#0#0#7'TButton'#9'BtnDelete'#22'AnchorSideLeft.Control'#7#13'BtnNewSubIt'
|
||||
+'em'#21'AnchorSideTop.Control'#7#13'BtnNewSubItem'#18'AnchorSideTop.Side'#7#9
|
||||
+'asrBottom'#23'AnchorSideRight.Control'#7#13'BtnNewSubItem'#20'AnchorSideRig'
|
||||
+'ht.Side'#7#9'asrBottom'#4'Left'#3#172#0#6'Height'#2#25#3'Top'#2'A'#5'Width'
|
||||
+#2'p'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#17'BorderSpacing.Top'#2#5
|
||||
+#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#7'&Delete'#7'OnClick'#7#14'b'
|
||||
+'tnDeleteClick'#8'TabOrder'#2#3#0#0#0#9'TGroupBox'#9'GroupBox2'#4'Left'#3'+'
|
||||
+#1#6'Height'#3#198#0#3'Top'#2#8#5'Width'#3#205#0#7'Anchors'#11#5'akTop'#7'ak'
|
||||
+'Right'#8'akBottom'#0#7'Caption'#6#15'Item Properties'#12'ClientHeight'#3#180
|
||||
+#0#11'ClientWidth'#3#201#0#8'TabOrder'#2#5#0#6'TLabel'#12'LabelCaption'#22'A'
|
||||
+'nchorSideLeft.Control'#7#9'GroupBox2'#21'AnchorSideTop.Control'#7#9'GroupBo'
|
||||
+'x2'#4'Left'#2#5#6'Height'#2#14#3'Top'#2#5#5'Width'#2'*'#18'BorderSpacing.Le'
|
||||
+'ft'#2#5#17'BorderSpacing.Top'#2#5#7'Caption'#6#8'Caption:'#12'FocusControl'
|
||||
+#7#7'edtText'#11'ParentColor'#8#0#0#6'TLabel'#15'LabelImageIndex'#22'AnchorS'
|
||||
+'ideLeft.Control'#7#12'LabelCaption'#21'AnchorSideTop.Control'#7#12'LabelCap'
|
||||
+'tion'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#5#6'Height'#2#14#3'To'
|
||||
+'p'#2''''#5'Width'#2'B'#17'BorderSpacing.Top'#2#20#7'Caption'#6#12'Image Ind'
|
||||
+'ex:'#12'FocusControl'#7#11'edtIndexImg'#11'ParentColor'#8#0#0#6'TLabel'#15
|
||||
+'LabelStateIndex'#22'AnchorSideLeft.Control'#7#15'LabelImageIndex'#21'Anchor'
|
||||
+'SideTop.Control'#7#15'LabelImageIndex'#18'AnchorSideTop.Side'#7#9'asrBottom'
|
||||
+#4'Left'#2#5#6'Height'#2#14#3'Top'#2'I'#5'Width'#2'>'#17'BorderSpacing.Top'#2
|
||||
,#20#7'Caption'#6#12'State Index:'#12'FocusControl'#7#13'edtIndexState'#11'Pa'
|
||||
+'rentColor'#8#7'Visible'#8#0#0#5'TEdit'#7'edtText'#21'AnchorSideTop.Control'
|
||||
+#7#12'LabelCaption'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2'j'#6'Hei'
|
||||
+'ght'#2#23#3'Top'#2#1#5'Width'#2'['#8'OnChange'#7#11'Edit1Change'#8'TabOrder'
|
||||
+#2#0#0#0#5'TEdit'#11'edtIndexImg'#22'AnchorSideLeft.Control'#7#7'edtText'#21
|
||||
+'AnchorSideTop.Control'#7#15'LabelImageIndex'#18'AnchorSideTop.Side'#7#9'asr'
|
||||
+'Center'#4'Left'#2'j'#6'Height'#2#23#3'Top'#2'#'#5'Width'#2'0'#13'OnEditingD'
|
||||
+'one'#7#24'edtIndexStateEditingDone'#8'TabOrder'#2#1#0#0#5'TEdit'#13'edtInde'
|
||||
+'xState'#22'AnchorSideLeft.Control'#7#11'edtIndexImg'#21'AnchorSideTop.Contr'
|
||||
+'ol'#7#15'LabelStateIndex'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2'j'
|
||||
+#6'Height'#2#23#3'Top'#2'E'#5'Width'#2'0'#13'OnEditingDone'#7#24'edtIndexSta'
|
||||
+'teEditingDone'#8'TabOrder'#2#2#7'Visible'#8#0#0#0#0
|
||||
]);
|
||||
|
Loading…
Reference in New Issue
Block a user