unit1.dfm

来自「delphi课程设计的内容,包括源代码,文本的设计,菜单的设计等.」· DFM 代码 · 共 73 行

DFM
73
字号
object Form1: TForm1
  Left = 192
  Top = 107
  Width = 544
  Height = 375
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clRed
  Font.Height = -24
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 29
  object Label1: TLabel
    Left = 112
    Top = 40
    Width = 66
    Height = 29
    Caption = 'name:'
  end
  object Label2: TLabel
    Left = 64
    Top = 104
    Width = 111
    Height = 29
    Caption = 'password:'
  end
  object Label3: TLabel
    Left = 0
    Top = 176
    Width = 176
    Height = 29
    Caption = 'password again:'
  end
  object Edit1: TEdit
    Left = 192
    Top = 48
    Width = 177
    Height = 33
    MaxLength = 8
    TabOrder = 0
  end
  object Edit2: TEdit
    Left = 192
    Top = 112
    Width = 177
    Height = 33
    MaxLength = 8
    PasswordChar = '*'
    TabOrder = 1
  end
  object Edit3: TEdit
    Left = 192
    Top = 176
    Width = 177
    Height = 33
    MaxLength = 8
    PasswordChar = '*'
    TabOrder = 2
  end
  object Button1: TButton
    Left = 192
    Top = 256
    Width = 89
    Height = 41
    Caption = '确定'
    TabOrder = 3
    OnClick = Button1Click
  end
end

⌨️ 快捷键说明

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