unit1.dfm

来自「AES for BCB5/6 控件 安装: 1)展开XAES.ZIP 」· DFM 代码 · 共 151 行

DFM
151
字号
object Form1: TForm1
  Left = 192
  Top = 107
  Width = 625
  Height = 357
  Caption = 'AES算法控件演示 2004-9-17 by Netsys EMail: mike888@163.net'
  Color = clBtnFace
  Font.Charset = ANSI_CHARSET
  Font.Color = clWindowText
  Font.Height = -14
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 14
  object Label1: TLabel
    Left = 24
    Top = 42
    Width = 28
    Height = 14
    Caption = '明文'
  end
  object Label2: TLabel
    Left = 24
    Top = 74
    Width = 28
    Height = 14
    Caption = '密钥'
  end
  object Label3: TLabel
    Left = 24
    Top = 106
    Width = 14
    Height = 14
    Caption = 'IV'
  end
  object Label4: TLabel
    Left = 24
    Top = 138
    Width = 28
    Height = 14
    Caption = '密文'
  end
  object Label5: TLabel
    Left = 24
    Top = 170
    Width = 28
    Height = 14
    Caption = '解密'
  end
  object Label6: TLabel
    Left = 24
    Top = 202
    Width = 56
    Height = 14
    Caption = '密钥长度'
  end
  object Button1: TButton
    Left = 192
    Top = 272
    Width = 75
    Height = 25
    Caption = '加减密'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 336
    Top = 272
    Width = 105
    Height = 25
    Caption = '文件加密'
    TabOrder = 1
    OnClick = Button2Click
  end
  object Edit1: TEdit
    Left = 64
    Top = 40
    Width = 497
    Height = 22
    MaxLength = 128
    TabOrder = 2
    Text = '00000000000000000000000000000000'
  end
  object Edit2: TEdit
    Left = 64
    Top = 72
    Width = 497
    Height = 22
    MaxLength = 64
    TabOrder = 3
    Text = '0000000000000000000000000000000000000000000000000000000000000000'
  end
  object Edit3: TEdit
    Left = 64
    Top = 104
    Width = 497
    Height = 22
    MaxLength = 32
    TabOrder = 4
    Text = '00000000000000000000000000000000'
  end
  object Edit4: TEdit
    Left = 64
    Top = 136
    Width = 497
    Height = 22
    MaxLength = 128
    TabOrder = 5
  end
  object Edit5: TEdit
    Left = 64
    Top = 168
    Width = 497
    Height = 22
    MaxLength = 128
    TabOrder = 6
  end
  object RB16: TRadioButton
    Left = 96
    Top = 200
    Width = 73
    Height = 17
    Caption = '16 byte'
    Checked = True
    TabOrder = 7
    TabStop = True
  end
  object RB24: TRadioButton
    Left = 184
    Top = 200
    Width = 97
    Height = 17
    Caption = '24 byte'
    TabOrder = 8
  end
  object RB32: TRadioButton
    Left = 288
    Top = 200
    Width = 97
    Height = 17
    Caption = '32 byte'
    TabOrder = 9
  end
  object XAes1: TXAes
    KeyLen = 16
    Left = 112
    Top = 264
  end
end

⌨️ 快捷键说明

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