⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unittest.dfm

📁 非常古老的小游戏, 也是我最早编的一个 Borland C++ Builder 程序。 记得最早是学习 Pascal 时编了一个, 这个是我学习 BCB 时编的。 学习编程找些有意思的程序比看那些枯燥
💻 DFM
字号:
object FormMain: TFormMain
  Left = 365
  Top = 260
  BorderIcons = [biSystemMenu, biMinimize]
  BorderStyle = bsSingle
  Caption = '贪吃蛇'
  ClientHeight = 359
  ClientWidth = 460
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = '宋体'
  Font.Style = []
  Menu = MainMenu1
  OldCreateOrder = False
  Position = poScreenCenter
  OnKeyDown = FormKeyDown
  PixelsPerInch = 96
  TextHeight = 12
  object Label1: TLabel
    Left = 84
    Top = 344
    Width = 30
    Height = 12
    Caption = '级别:'
    Transparent = True
  end
  object LabelStage: TLabel
    Left = 116
    Top = 344
    Width = 6
    Height = 12
    Caption = '0'
    Transparent = True
  end
  object Label2: TLabel
    Left = 4
    Top = 344
    Width = 30
    Height = 12
    Caption = '分数:'
    Transparent = True
  end
  object LabelScore: TLabel
    Left = 36
    Top = 344
    Width = 6
    Height = 12
    Caption = '0'
    Transparent = True
  end
  object Label3: TLabel
    Left = 164
    Top = 344
    Width = 30
    Height = 12
    Caption = '纪录:'
    Transparent = True
  end
  object LabelHS: TLabel
    Left = 195
    Top = 344
    Width = 6
    Height = 12
    Caption = '0'
    Transparent = True
  end
  object LabelHome: TLabel
    Left = 363
    Top = 344
    Width = 90
    Height = 12
    Cursor = crHandPoint
    Alignment = taRightJustify
    Caption = 'www.cppfans.com'
    OnClick = LabelHomeClick
  end
  object ScrollBoxSnake: TScrollBox
    Left = 4
    Top = 0
    Width = 452
    Height = 340
    TabOrder = 0
    object PaintBoxSnake: TPaintBox
      Left = 0
      Top = 0
      Width = 448
      Height = 336
      Align = alClient
      OnPaint = PaintBoxSnakePaint
    end
  end
  object MainMenu1: TMainMenu
    Left = 16
    Top = 16
    object File1: TMenuItem
      Caption = '游戏(&G)'
      object MiNew: TMenuItem
        Caption = '新游戏(&N)'
        ShortCut = 121
        OnClick = MiNewClick
      end
      object MiPause: TMenuItem
        Caption = '暂停(&P)'
        ShortCut = 27
        OnClick = MiPauseClick
      end
      object HighScore1: TMenuItem
        Caption = '游戏纪录(&H)'
        OnClick = HighScore1Click
      end
      object N1: TMenuItem
        Caption = '-'
      end
      object MiExit: TMenuItem
        Caption = '离开游戏(&X)'
        ShortCut = 32856
        OnClick = MiExitClick
      end
    end
    object Options1: TMenuItem
      Caption = '选项(&O)'
      object MiBlocks: TMenuItem
        Caption = '按方块显示(&B)'
        OnClick = MiBlocksClick
      end
    end
    object Help1: TMenuItem
      Caption = '帮助(&H)'
      object Help2: TMenuItem
        Caption = '帮助(&H)'
        ShortCut = 112
      end
      object About1: TMenuItem
        Caption = '关于(&A)……'
        OnClick = About1Click
      end
    end
  end
  object ApplicationEvents1: TApplicationEvents
    OnDeactivate = ApplicationEvents1Deactivate
    Left = 48
    Top = 16
  end
end

⌨️ 快捷键说明

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