Inno-Setup-issrc/Projects/Src/IDE.SignToolsForm.dfm

98 lines
2.1 KiB
Plaintext
Raw Permalink Normal View History

2018-11-29 08:38:19 +01:00
object SignToolsForm: TSignToolsForm
Left = 330
Top = 188
BorderIcons = [biSystemMenu]
Caption = 'Configure Sign Tools'
2018-11-29 08:38:19 +01:00
ClientHeight = 247
ClientWidth = 577
Color = clBtnFace
2018-11-29 08:38:19 +01:00
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
DesignSize = (
577
247)
2018-11-29 08:38:19 +01:00
TextHeight = 13
object GroupBox1: TGroupBox
Left = 8
Top = 8
Width = 561
2018-11-29 08:38:19 +01:00
Height = 201
Anchors = [akLeft, akTop, akRight, akBottom]
2018-11-29 08:38:19 +01:00
Caption = ' Sign Tools '
TabOrder = 0
DesignSize = (
561
201)
2018-11-29 08:38:19 +01:00
object SignToolsListBox: TListBox
Left = 8
Top = 16
Width = 465
2018-11-29 08:38:19 +01:00
Height = 177
Anchors = [akLeft, akTop, akRight, akBottom]
2018-11-29 08:38:19 +01:00
ItemHeight = 13
TabOrder = 0
OnClick = SignToolsListBoxClick
2024-08-09 15:09:18 +02:00
OnDblClick = SignToolsListBoxDblClick
2018-11-29 08:38:19 +01:00
end
object AddButton: TButton
Left = 480
2018-11-29 08:38:19 +01:00
Top = 18
Width = 73
Height = 23
Anchors = [akTop, akRight]
2018-11-29 08:38:19 +01:00
Caption = '&Add...'
Default = True
TabOrder = 1
OnClick = AddButtonClick
end
object RemoveButton: TButton
Left = 480
2018-11-29 08:38:19 +01:00
Top = 74
Width = 73
Height = 23
Anchors = [akTop, akRight]
2018-11-29 08:38:19 +01:00
Caption = 'Remo&ve'
TabOrder = 3
OnClick = RemoveButtonClick
end
object EditButton: TButton
Left = 480
2018-11-29 08:38:19 +01:00
Top = 46
Width = 73
Height = 23
Anchors = [akTop, akRight]
2018-11-29 08:38:19 +01:00
Caption = '&Edit...'
TabOrder = 2
OnClick = EditButtonClick
end
end
object OKButton: TButton
Left = 416
2018-11-29 08:38:19 +01:00
Top = 217
Width = 73
Height = 23
Anchors = [akRight, akBottom]
2018-11-29 08:38:19 +01:00
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 1
end
object CancelButton: TButton
Left = 496
2018-11-29 08:38:19 +01:00
Top = 217
Width = 73
Height = 23
Anchors = [akRight, akBottom]
2018-11-29 08:38:19 +01:00
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
end