79 lines
1.6 KiB
Plaintext
79 lines
1.6 KiB
Plaintext
|
|
object MainForm: TMainForm
|
||
|
|
Left = 2194
|
||
|
|
Height = 374
|
||
|
|
Top = 238
|
||
|
|
Width = 467
|
||
|
|
Caption = 'Base64 Converter'
|
||
|
|
ClientHeight = 374
|
||
|
|
ClientWidth = 467
|
||
|
|
OnCreate = FormCreate
|
||
|
|
Position = poDesktopCenter
|
||
|
|
LCLVersion = '3.2.0.0'
|
||
|
|
object InputMemo: TMemo
|
||
|
|
AnchorSideBottom.Control = UISplitter
|
||
|
|
Left = 8
|
||
|
|
Height = 160
|
||
|
|
Top = 16
|
||
|
|
Width = 450
|
||
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
||
|
|
TabOrder = 0
|
||
|
|
end
|
||
|
|
object InputLabel: TLabel
|
||
|
|
Left = 8
|
||
|
|
Height = 15
|
||
|
|
Top = 0
|
||
|
|
Width = 28
|
||
|
|
Caption = 'Input'
|
||
|
|
end
|
||
|
|
object OutputLabel: TLabel
|
||
|
|
AnchorSideTop.Control = UISplitter
|
||
|
|
Left = 8
|
||
|
|
Height = 15
|
||
|
|
Top = 184
|
||
|
|
Width = 38
|
||
|
|
BorderSpacing.Top = 8
|
||
|
|
Caption = 'Output'
|
||
|
|
end
|
||
|
|
object OutputMemo: TMemo
|
||
|
|
AnchorSideTop.Control = UISplitter
|
||
|
|
Left = 8
|
||
|
|
Height = 132
|
||
|
|
Top = 200
|
||
|
|
Width = 450
|
||
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
||
|
|
BorderSpacing.Top = 24
|
||
|
|
TabOrder = 1
|
||
|
|
end
|
||
|
|
object EncodeButton: TButton
|
||
|
|
Left = 381
|
||
|
|
Height = 25
|
||
|
|
Top = 340
|
||
|
|
Width = 75
|
||
|
|
Anchors = [akRight, akBottom]
|
||
|
|
Caption = 'Encode'
|
||
|
|
TabOrder = 2
|
||
|
|
OnClick = EncodeButtonClick
|
||
|
|
end
|
||
|
|
object UISplitter: TSplitter
|
||
|
|
AnchorSideTop.Side = asrCenter
|
||
|
|
Cursor = crVSplit
|
||
|
|
Left = 8
|
||
|
|
Height = 8
|
||
|
|
Top = 176
|
||
|
|
Width = 450
|
||
|
|
Align = alNone
|
||
|
|
Anchors = [akTop, akLeft, akRight]
|
||
|
|
ResizeAnchor = akTop
|
||
|
|
end
|
||
|
|
object DecodeButton: TButton
|
||
|
|
Left = 301
|
||
|
|
Height = 25
|
||
|
|
Top = 340
|
||
|
|
Width = 75
|
||
|
|
Anchors = [akRight, akBottom]
|
||
|
|
Caption = 'Decode'
|
||
|
|
TabOrder = 4
|
||
|
|
OnClick = DecodeButtonClick
|
||
|
|
end
|
||
|
|
end
|