mainform.dfm

来自「著名的SecureBlackBox控件完整源码」· DFM 代码 · 共 192 行

DFM
192
字号
object frmMain: TfrmMain
  Left = 8
  Top = 8
  Width = 440
  Height = 621
  Caption = 'Simple Signer'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = True
  Position = poDesktopCenter
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 13
  object lbXMLFile: TLabel
    Left = 8
    Top = 17
    Width = 40
    Height = 13
    Caption = 'XML file:'
  end
  object sbBrowseXMLFile: TSpeedButton
    Left = 401
    Top = 12
    Width = 23
    Height = 22
    Anchors = [akTop, akRight]
    Caption = '...'
    OnClick = sbBrowseXMLFileClick
  end
  object lbNodeType: TLabel
    Left = 8
    Top = 426
    Width = 56
    Height = 13
    Caption = 'Node Type:'
  end
  object dlbNodeType: TLabel
    Left = 103
    Top = 426
    Width = 25
    Height = 13
    Caption = 'None'
  end
  object lbNamespaceURI: TLabel
    Left = 8
    Top = 445
    Width = 80
    Height = 13
    Caption = 'Namespace URI:'
  end
  object dlbNamespaceURI: TLabel
    Left = 103
    Top = 445
    Width = 3
    Height = 13
  end
  object lbCharset: TLabel
    Left = 248
    Top = 48
    Width = 42
    Height = 13
    Caption = 'Charset:'
  end
  object edXMLFile: TEdit
    Left = 54
    Top = 14
    Width = 341
    Height = 21
    Anchors = [akLeft, akTop, akRight]
    TabOrder = 0
  end
  object btnLoadXML: TButton
    Left = 349
    Top = 81
    Width = 75
    Height = 25
    Anchors = [akTop, akRight]
    Caption = 'Load XML'
    TabOrder = 1
    OnClick = btnLoadXMLClick
  end
  object btnSaveXML: TButton
    Left = 349
    Top = 112
    Width = 75
    Height = 25
    Anchors = [akTop, akRight]
    Caption = 'Save XML'
    TabOrder = 2
    OnClick = btnSaveXMLClick
  end
  object tvXML: TTreeView
    Left = 8
    Top = 73
    Width = 332
    Height = 343
    Anchors = [akLeft, akTop, akRight]
    Indent = 19
    ReadOnly = True
    TabOrder = 3
    OnChange = tvXMLChange
  end
  object btnSign: TButton
    Left = 349
    Top = 321
    Width = 75
    Height = 25
    Anchors = [akTop, akRight]
    Caption = 'Sign'
    TabOrder = 4
    OnClick = btnSignClick
  end
  object btnVerify: TButton
    Left = 348
    Top = 352
    Width = 75
    Height = 25
    Anchors = [akTop, akRight]
    Caption = 'Verify'
    TabOrder = 5
    OnClick = btnVerifyClick
  end
  object mmXML: TMemo
    Left = 8
    Top = 464
    Width = 416
    Height = 117
    Anchors = [akLeft, akTop, akRight, akBottom]
    ReadOnly = True
    ScrollBars = ssVertical
    TabOrder = 6
  end
  object btnClear: TButton
    Left = 349
    Top = 193
    Width = 75
    Height = 25
    Anchors = [akTop, akRight]
    Caption = 'Clear'
    TabOrder = 7
    OnClick = btnClearClick
  end
  object btnDelete: TButton
    Left = 349
    Top = 162
    Width = 75
    Height = 25
    Anchors = [akTop, akRight]
    Caption = 'Delete'
    TabOrder = 8
    OnClick = btnDeleteClick
  end
  object btnRemoveSignature: TButton
    Left = 349
    Top = 392
    Width = 75
    Height = 24
    Anchors = [akTop, akRight]
    Caption = 'Remove'
    TabOrder = 9
    OnClick = btnRemoveSignatureClick
  end
  object cbNormalizeNEL: TCheckBox
    Left = 8
    Top = 48
    Width = 201
    Height = 17
    Caption = 'Normalize newline characters on load'
    Checked = True
    State = cbChecked
    TabOrder = 10
  end
  object cbCharset: TComboBox
    Left = 296
    Top = 44
    Width = 129
    Height = 21
    Style = csDropDownList
    ItemHeight = 13
    TabOrder = 11
  end
  object dlgOpenXML: TOpenDialog
    DefaultExt = '*.xml'
    Filter = 'XML files|*.xml|All files|*.*'
  end
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?