u_changepswd.dfm

来自「一个简单的学籍管理软件」· DFM 代码 · 共 92 行

DFM
92
字号
object Fm_ChangePswd: TFm_ChangePswd
  Left = 267
  Top = 168
  BorderStyle = bsDialog
  Caption = '修改当前操作人员密码'
  ClientHeight = 171
  ClientWidth = 269
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clWindowText
  Font.Height = -14
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 14
  object Label1: TLabel
    Left = 35
    Top = 22
    Width = 42
    Height = 14
    Caption = '旧密码'
  end
  object Label2: TLabel
    Left = 35
    Top = 54
    Width = 42
    Height = 14
    Caption = '新密码'
  end
  object Label3: TLabel
    Left = 35
    Top = 85
    Width = 70
    Height = 14
    Caption = '确认新密码'
  end
  object Bevel1: TBevel
    Left = 0
    Top = 121
    Width = 269
    Height = 50
    Align = alBottom
    Shape = bsTopLine
  end
  object Ed_OldPswd: TEdit
    Left = 113
    Top = 18
    Width = 121
    Height = 22
    MaxLength = 11
    PasswordChar = '*'
    TabOrder = 0
  end
  object Ed_Password: TEdit
    Left = 113
    Top = 50
    Width = 121
    Height = 22
    MaxLength = 11
    PasswordChar = '*'
    TabOrder = 1
  end
  object Ed_Confirm: TEdit
    Left = 113
    Top = 81
    Width = 121
    Height = 22
    MaxLength = 11
    PasswordChar = '*'
    TabOrder = 2
  end
  object Btn_Ok: TButton
    Left = 41
    Top = 135
    Width = 75
    Height = 25
    Caption = '确定'
    TabOrder = 3
    OnClick = Btn_OkClick
  end
  object Btn_Cancel: TButton
    Left = 154
    Top = 135
    Width = 75
    Height = 25
    Caption = '取消'
    ModalResult = 2
    TabOrder = 4
  end
end

⌨️ 快捷键说明

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