mainunit.dfm

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

DFM
93
字号
object MainForm: TMainForm
  Left = 192
  Top = 107
  BorderIcons = [biSystemMenu, biMinimize]
  BorderStyle = bsSingle
  Caption = 'MainForm'
  ClientHeight = 198
  ClientWidth = 373
  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 = 24
    Top = 30
    Width = 42
    Height = 16
    Caption = '源目录'
  end
  object Label2: TLabel
    Left = 16
    Top = 83
    Width = 56
    Height = 16
    Caption = '目的目录'
  end
  object Edit1: TEdit
    Left = 98
    Top = 21
    Width = 139
    Height = 24
    TabOrder = 0
  end
  object Edit2: TEdit
    Left = 98
    Top = 74
    Width = 139
    Height = 24
    TabOrder = 1
  end
  object Button1: TButton
    Left = 255
    Top = 21
    Width = 86
    Height = 28
    Caption = '···'
    TabOrder = 2
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 255
    Top = 74
    Width = 86
    Height = 29
    Caption = '···'
    TabOrder = 3
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 21
    Top = 146
    Width = 85
    Height = 29
    Caption = '复制'
    TabOrder = 4
    OnClick = Button3Click
  end
  object Button4: TButton
    Left = 142
    Top = 146
    Width = 85
    Height = 29
    Caption = '删除'
    TabOrder = 5
    OnClick = Button4Click
  end
  object Button5: TButton
    Left = 263
    Top = 146
    Width = 86
    Height = 29
    Caption = '移动'
    TabOrder = 6
    OnClick = Button5Click
  end
end

⌨️ 快捷键说明

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