dip.dfm
来自「AES加密解密」· DFM 代码 · 共 96 行
DFM
96 行
object Form1: TForm1
Left = 306
Top = 149
Width = 870
Height = 616
Caption = 'AES'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 224
Top = 120
Width = 43
Height = 13
Caption = 'Message'
end
object Label2: TLabel
Left = 224
Top = 192
Width = 17
Height = 13
Caption = 'key'
end
object Label3: TLabel
Left = 224
Top = 272
Width = 53
Height = 13
Caption = 'Chiphertext'
end
object Label4: TLabel
Left = 224
Top = 352
Width = 43
Height = 13
Caption = 'Message'
end
object Edit1: TEdit
Left = 320
Top = 120
Width = 201
Height = 21
TabOrder = 0
Text = 'Message'
end
object Edit2: TEdit
Left = 320
Top = 192
Width = 201
Height = 21
MaxLength = 16
TabOrder = 1
Text = 'key'
end
object Edit3: TEdit
Left = 320
Top = 272
Width = 201
Height = 21
TabOrder = 2
Text = 'Chiphertext'
end
object Button1: TButton
Left = 320
Top = 424
Width = 81
Height = 33
Caption = 'Encryption'
TabOrder = 3
OnClick = Button1Click
end
object Button2: TButton
Left = 440
Top = 424
Width = 81
Height = 33
Caption = 'Decryption'
TabOrder = 4
OnClick = Button2Click
end
object Edit4: TEdit
Left = 320
Top = 352
Width = 201
Height = 21
TabOrder = 5
Text = 'Message'
end
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?