mainunit.dfm

来自「Delphi7编程80例(完全版)」· DFM 代码 · 共 56 行

DFM
56
字号
object MainForm: TMainForm
  Left = 192
  Top = 114
  BorderStyle = bsSingle
  Caption = 'MainForm'
  ClientHeight = 446
  ClientWidth = 688
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  FormStyle = fsStayOnTop
  OldCreateOrder = False
  PopupMenu = PopupMenu1
  OnCreate = FormCreate
  OnShow = FormShow
  PixelsPerInch = 96
  TextHeight = 13
  object Image1: TImage
    Left = 0
    Top = 0
    Width = 688
    Height = 446
    Align = alClient
    AutoSize = True
    Center = True
  end
  object Timer1: TTimer
    Interval = 50
    OnTimer = Timer1Timer
    Left = 120
    Top = 40
  end
  object PopupMenu1: TPopupMenu
    Left = 216
    Top = 160
    object N11: TMenuItem
      Caption = '精灵1'
      OnClick = N11Click
    end
    object N21: TMenuItem
      Caption = '精灵2'
      OnClick = N21Click
    end
    object N1: TMenuItem
      Caption = '-'
    end
    object N2: TMenuItem
      Caption = '退出'
      OnClick = N2Click
    end
  end
end

⌨️ 快捷键说明

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