unit1.dfm

来自「DELPHI经典程序」· DFM 代码 · 共 92 行

DFM
92
字号
object Form1: TForm1
  Left = 381
  Top = 164
  Width = 232
  Height = 172
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  Visible = True
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Label3: TLabel
    Left = 6
    Top = 108
    Width = 109
    Height = 29
    Alignment = taCenter
    AutoSize = False
    Caption = 'Label3'
    Color = clYellow
    ParentColor = False
    Layout = tlCenter
  end
  object Label1: TLabel
    Left = 0
    Top = 0
    Width = 224
    Height = 49
    Align = alTop
    AutoSize = False
    Caption = 'Label1'
    Color = clAqua
    ParentColor = False
    Layout = tlCenter
    WordWrap = True
  end
  object Label2: TLabel
    Left = 6
    Top = 60
    Width = 109
    Height = 43
    AutoSize = False
    Caption = 'Label2'
    Layout = tlCenter
    WordWrap = True
  end
  object Edit1: TEdit
    Left = 126
    Top = 58
    Width = 89
    Height = 21
    TabOrder = 0
    Text = 'Edit1'
  end
  object Button1: TButton
    Left = 126
    Top = 90
    Width = 89
    Height = 23
    Action = Action1
    TabOrder = 1
  end
  object Button2: TButton
    Left = 126
    Top = 118
    Width = 89
    Height = 23
    Action = Action2
    TabOrder = 2
  end
  object ActionList1: TActionList
    Left = 134
    Top = 10
    object Action1: TAction
      Caption = 'Action1'
      OnExecute = Action1Execute
      OnUpdate = Action1Update
    end
    object Action2: TAction
      Caption = 'Action2'
      OnExecute = Action2Execute
      OnUpdate = Action2Update
    end
  end
end

⌨️ 快捷键说明

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