mainunit.dfm

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

DFM
53
字号
object MainForm: TMainForm
  Left = 284
  Top = 368
  BorderIcons = [biSystemMenu, biMinimize]
  BorderStyle = bsSingle
  Caption = 'MainForm'
  ClientHeight = 180
  ClientWidth = 222
  Color = clBtnFace
  Font.Charset = ANSI_CHARSET
  Font.Color = clWindowText
  Font.Height = -14
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 16
  object Label1: TLabel
    Left = 64
    Top = 9
    Width = 70
    Height = 16
    Caption = '格式化软盘'
  end
  object Button1: TButton
    Left = 37
    Top = 37
    Width = 147
    Height = 28
    Caption = '快速格式化'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 37
    Top = 82
    Width = 147
    Height = 29
    Caption = '完全格式化'
    TabOrder = 1
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 37
    Top = 128
    Width = 147
    Height = 29
    Caption = '仅复制系统文件'
    TabOrder = 2
    OnClick = Button3Click
  end
end

⌨️ 快捷键说明

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