mainunit.dfm

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

DFM
71
字号
object MainForm: TMainForm
  Left = 231
  Top = 144
  BorderIcons = [biSystemMenu, biMinimize]
  BorderStyle = bsSingle
  Caption = 'MainForm'
  ClientHeight = 280
  ClientWidth = 357
  Color = clBtnFace
  Font.Charset = ANSI_CHARSET
  Font.Color = clWindowText
  Font.Height = -14
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 16
  object Label1: TLabel
    Left = 18
    Top = 46
    Width = 84
    Height = 16
    Caption = 'Windows目录'
  end
  object Label2: TLabel
    Left = 27
    Top = 101
    Width = 74
    Height = 16
    Caption = 'System目录'
  end
  object Label3: TLabel
    Left = 46
    Top = 155
    Width = 64
    Height = 16
    Caption = 'Temp目录'
  end
  object Edit1: TEdit
    Left = 119
    Top = 37
    Width = 220
    Height = 24
    TabOrder = 0
  end
  object Edit2: TEdit
    Left = 119
    Top = 91
    Width = 220
    Height = 24
    TabOrder = 1
  end
  object Edit3: TEdit
    Left = 119
    Top = 146
    Width = 220
    Height = 24
    TabOrder = 2
  end
  object Button1: TButton
    Left = 128
    Top = 219
    Width = 86
    Height = 29
    Caption = '得到目录'
    TabOrder = 3
    OnClick = Button1Click
  end
end

⌨️ 快捷键说明

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