setpasswordform.dfm

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

DFM
78
字号
object frmSetPassword: TfrmSetPassword
  Left = 192
  Top = 107
  BorderStyle = bsDialog
  Caption = 'Set password'
  ClientHeight = 181
  ClientWidth = 283
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  OnShow = FormShow
  PixelsPerInch = 96
  TextHeight = 13
  object gbSetPassword: TGroupBox
    Left = 8
    Top = 8
    Width = 265
    Height = 129
    Caption = 'Setting password for user'
    TabOrder = 0
    object lPass: TLabel
      Left = 16
      Top = 24
      Width = 74
      Height = 13
      Caption = 'New password:'
    end
    object lPassConf: TLabel
      Left = 16
      Top = 72
      Width = 112
      Height = 13
      Caption = 'Password confirmation:'
    end
    object editPassword: TEdit
      Left = 16
      Top = 40
      Width = 233
      Height = 21
      PasswordChar = '*'
      TabOrder = 0
    end
    object editPasswordConf: TEdit
      Left = 16
      Top = 88
      Width = 233
      Height = 21
      PasswordChar = '*'
      TabOrder = 1
    end
  end
  object btnOK: TButton
    Left = 64
    Top = 144
    Width = 75
    Height = 25
    Caption = 'OK'
    Default = True
    TabOrder = 1
    OnClick = btnOKClick
  end
  object btnCancel: TButton
    Left = 144
    Top = 144
    Width = 75
    Height = 25
    Cancel = True
    Caption = 'Cancel'
    TabOrder = 2
    OnClick = btnCancelClick
  end
end

⌨️ 快捷键说明

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