connpropsform.dfm

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

DFM
70
字号
object frmConnProps: TfrmConnProps
  Left = 192
  Top = 107
  BorderStyle = bsDialog
  Caption = 'Server connection properties'
  ClientHeight = 167
  ClientWidth = 265
  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 gbConnProps: TGroupBox
    Left = 8
    Top = 8
    Width = 249
    Height = 113
    Caption = 'Server connection properties'
    TabOrder = 0
    object lPort: TLabel
      Left = 16
      Top = 24
      Width = 66
      Height = 13
      Caption = 'Listen on port'
    end
    object editPort: TEdit
      Left = 16
      Top = 40
      Width = 73
      Height = 21
      TabOrder = 0
      Text = '22'
    end
    object cbCompression: TCheckBox
      Left = 16
      Top = 72
      Width = 169
      Height = 17
      Caption = 'Force compression'
      TabOrder = 1
    end
  end
  object btnOK: TButton
    Left = 56
    Top = 128
    Width = 75
    Height = 25
    Caption = 'OK'
    Default = True
    TabOrder = 1
    OnClick = btnOKClick
  end
  object btnCancel: TButton
    Left = 136
    Top = 128
    Width = 75
    Height = 25
    Cancel = True
    Caption = 'Cancel'
    TabOrder = 2
    OnClick = btnCancelClick
  end
end

⌨️ 快捷键说明

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