ulogin.dfm

来自「编写该文档是为了分析企业人事管理系统的流程」· DFM 代码 · 共 74 行

DFM
74
字号
object Frm_Login: TFrm_Login
  Left = 306
  Top = 285
  BorderIcons = []
  BorderStyle = bsSingle
  Caption = '系统登录 04302176 蒋林 '
  ClientHeight = 155
  ClientWidth = 268
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnClose = FormClose
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 33
    Top = 24
    Width = 36
    Height = 13
    Caption = '编号:'
  end
  object Label2: TLabel
    Left = 35
    Top = 59
    Width = 36
    Height = 13
    Caption = '密码:'
  end
  object E_name: TEdit
    Left = 104
    Top = 24
    Width = 121
    Height = 21
    TabOrder = 0
    Text = '04302176'
  end
  object E_pass: TEdit
    Left = 104
    Top = 56
    Width = 121
    Height = 21
    PasswordChar = '*'
    TabOrder = 1
    Text = '555888'
  end
  object BitB_yes: TBitBtn
    Left = 64
    Top = 104
    Width = 75
    Height = 25
    Caption = '确定'
    Default = True
    ModalResult = 6
    TabOrder = 2
    OnClick = BitB_yesClick
  end
  object BitB_no: TBitBtn
    Left = 152
    Top = 104
    Width = 75
    Height = 25
    Cancel = True
    Caption = '取消'
    ModalResult = 7
    TabOrder = 3
    OnClick = BitB_noClick
  end
end

⌨️ 快捷键说明

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