mainunit.dfm

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

DFM
65
字号
object MainForm: TMainForm
  Left = 192
  Top = 107
  BorderIcons = [biSystemMenu, biMinimize]
  BorderStyle = bsSingle
  Caption = 'MainForm'
  ClientHeight = 167
  ClientWidth = 347
  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 = 18
    Width = 126
    Height = 16
    Caption = '请输入文件夹路径:'
  end
  object Edit1: TEdit
    Left = 18
    Top = 46
    Width = 312
    Height = 24
    TabOrder = 0
    OnChange = Edit1Change
  end
  object Button1: TButton
    Left = 18
    Top = 101
    Width = 86
    Height = 28
    Caption = '查看文件'
    Enabled = False
    TabOrder = 1
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 128
    Top = 101
    Width = 86
    Height = 28
    Caption = '创建文件夹'
    Enabled = False
    TabOrder = 2
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 238
    Top = 101
    Width = 85
    Height = 28
    Caption = '删除文件夹'
    Enabled = False
    TabOrder = 3
    OnClick = Button3Click
  end
end

⌨️ 快捷键说明

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