unit2.dfm

来自「DELPHI7编程百例 DELPHI7编程百例 DELPHI7编程百例」· DFM 代码 · 共 83 行

DFM
83
字号
object LoginDlg: TLoginDlg
  Left = 243
  Top = 169
  BorderStyle = bsDialog
  Caption = 'Login Dialog'
  ClientHeight = 172
  ClientWidth = 298
  Color = clBtnFace
  ParentFont = True
  OldCreateOrder = True
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 13
  object Bevel1: TBevel
    Left = 8
    Top = 8
    Width = 281
    Height = 105
    Shape = bsFrame
  end
  object Label1: TLabel
    Left = 40
    Top = 40
    Width = 50
    Height = 13
    Caption = 'UserName'
  end
  object Label2: TLabel
    Left = 40
    Top = 88
    Width = 46
    Height = 13
    Caption = 'Password'
  end
  object OKBtn: TButton
    Left = 71
    Top = 132
    Width = 75
    Height = 25
    Caption = 'OK'
    Default = True
    ModalResult = 1
    TabOrder = 0
  end
  object CancelBtn: TButton
    Left = 159
    Top = 132
    Width = 75
    Height = 25
    Cancel = True
    Caption = 'Cancel'
    ModalResult = 2
    TabOrder = 1
  end
  object Edit1: TEdit
    Left = 120
    Top = 24
    Width = 121
    Height = 24
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -13
    Font.Name = 'MS Sans Serif'
    Font.Style = [fsBold]
    ParentFont = False
    TabOrder = 2
  end
  object Edit2: TEdit
    Left = 120
    Top = 64
    Width = 121
    Height = 24
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -13
    Font.Name = 'MS Sans Serif'
    Font.Style = [fsBold]
    ParentFont = False
    PasswordChar = '*'
    TabOrder = 3
  end
end

⌨️ 快捷键说明

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