mainform.dfm

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

DFM
95
字号
object frmMain: TfrmMain
  Left = 192
  Top = 107
  BorderStyle = bsDialog
  Caption = 'Tiny PDF Processor'
  ClientHeight = 92
  ClientWidth = 361
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 13
  object lSourceFile: TLabel
    Left = 8
    Top = 8
    Width = 124
    Height = 13
    Caption = 'Please select the PDF file:'
  end
  object editSource: TEdit
    Left = 8
    Top = 24
    Width = 265
    Height = 21
    TabOrder = 0
  end
  object btnBrowseSource: TButton
    Left = 280
    Top = 24
    Width = 75
    Height = 25
    Caption = 'Browse...'
    TabOrder = 1
    OnClick = btnBrowseSourceClick
  end
  object btnOK: TButton
    Left = 104
    Top = 56
    Width = 75
    Height = 25
    Caption = 'OK'
    Default = True
    TabOrder = 2
    OnClick = btnOKClick
  end
  object btnCancel: TButton
    Left = 184
    Top = 56
    Width = 75
    Height = 25
    Cancel = True
    Caption = 'Cancel'
    TabOrder = 3
    OnClick = btnCancelClick
  end
  object OpenDialogPDF: TOpenDialog
    Filter = 'PDF documents (*.pdf)|*.pdf|All files (*.*)|*.*'
    InitialDir = '.'
    Left = 296
    Top = 8
  end
  object Document: TElPDFDocument
    Left = 296
    Top = 56
  end
  object Cert: TElX509Certificate
    Left = 328
    Top = 56
  end
  object CertStorage: TElMemoryCertStorage
    Options = [csoStrictChainBuilding]
    Left = 328
    Top = 8
  end
  object OpenDialogCert: TOpenDialog
    Filter = 'PKCS#12 certificates (*.pfx)|*.pfx|All files (*.*)|*.*'
    InitialDir = '.'
    Title = 'Please supply a certificate to decrypt the document'
    Left = 264
    Top = 56
  end
  object SaveDialogPDF: TSaveDialog
    Filter = 'PDF document (*.pdf)|*.pdf|All files (*.*)|*.*'
    InitialDir = '.'
    Title = 'Please select a location for decrypted file'
    Left = 264
    Top = 8
  end
end

⌨️ 快捷键说明

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