chdevpwd.dfm

来自「一个Delphi写的跟考勤机门禁机收款机的接品软件源码」· DFM 代码 · 共 106 行

DFM
106
字号
object frmChDevPwd: TfrmChDevPwd
  Left = 344
  Top = 201
  ActiveControl = OldPw
  BorderIcons = [biSystemMenu]
  BorderStyle = bsDialog
  Caption = '更改设备密码'
  ClientHeight = 170
  ClientWidth = 341
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  Position = poOwnerFormCenter
  OnShow = FormShow
  PixelsPerInch = 96
  TextHeight = 12
  object Label1: TLabel
    Left = 13
    Top = 16
    Width = 66
    Height = 12
    Caption = '原设备密码:'
  end
  object Label2: TLabel
    Left = 13
    Top = 50
    Width = 66
    Height = 12
    Caption = '设备新密码:'
  end
  object Label3: TLabel
    Left = 13
    Top = 84
    Width = 66
    Height = 12
    Caption = '确认新密码:'
  end
  object RpNewPw: TMaskEdit
    Left = 130
    Top = 84
    Width = 197
    Height = 20
    Hint = '请重新输入新设备密码'
    ImeMode = imClose
    MaxLength = 12
    PasswordChar = '*'
    TabOrder = 2
    OnChange = InputChange
    OnExit = OldPwExit
  end
  object NewPw: TMaskEdit
    Left = 130
    Top = 50
    Width = 197
    Height = 20
    Hint = '请输入新设备密码'
    ImeMode = imClose
    MaxLength = 12
    PasswordChar = '*'
    TabOrder = 1
    OnChange = InputChange
    OnExit = OldPwExit
  end
  object OldPw: TMaskEdit
    Left = 130
    Top = 16
    Width = 197
    Height = 20
    Hint = '请输入原设备密码'
    AutoSize = False
    ImeMode = imClose
    MaxLength = 12
    PasswordChar = '*'
    TabOrder = 0
    OnChange = InputChange
    OnExit = OldPwExit
  end
  object BtOK: TButton
    Left = 163
    Top = 133
    Width = 75
    Height = 25
    Hint = '确认口令更改'
    Caption = '确定(&O)'
    Default = True
    Enabled = False
    TabOrder = 3
    OnClick = BtOKClick
  end
  object BtCancel: TButton
    Left = 253
    Top = 133
    Width = 75
    Height = 25
    Hint = '取消口令更改'
    Cancel = True
    Caption = '取消(&C)'
    ModalResult = 2
    TabOrder = 4
  end
end

⌨️ 快捷键说明

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