mainunit.dfm

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

DFM
98
字号
object MainForm: TMainForm
  Left = 202
  Top = 125
  BorderIcons = [biSystemMenu, biMinimize]
  BorderStyle = bsSingle
  Caption = 'MainForm'
  ClientHeight = 181
  ClientWidth = 560
  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 = 27
    Width = 42
    Height = 16
    Caption = '文件名'
  end
  object Label2: TLabel
    Left = 18
    Top = 64
    Width = 56
    Height = 16
    Caption = '创建时间'
  end
  object Label3: TLabel
    Left = 18
    Top = 101
    Width = 56
    Height = 16
    Caption = '修改时间'
  end
  object Label4: TLabel
    Left = 18
    Top = 137
    Width = 84
    Height = 16
    Caption = '最后访问时间'
  end
  object Edit1: TEdit
    Left = 128
    Top = 18
    Width = 303
    Height = 24
    TabOrder = 0
  end
  object Button1: TButton
    Left = 457
    Top = 18
    Width = 86
    Height = 29
    Caption = '···'
    TabOrder = 1
    OnClick = Button1Click
  end
  object Edit2: TEdit
    Left = 128
    Top = 55
    Width = 303
    Height = 24
    TabOrder = 2
  end
  object Button2: TButton
    Left = 457
    Top = 82
    Width = 86
    Height = 29
    Caption = '得到时间'
    TabOrder = 3
    OnClick = Button2Click
  end
  object Edit3: TEdit
    Left = 128
    Top = 91
    Width = 303
    Height = 24
    TabOrder = 4
  end
  object Edit4: TEdit
    Left = 128
    Top = 128
    Width = 303
    Height = 24
    TabOrder = 5
  end
  object OpenDialog1: TOpenDialog
    Left = 64
    Top = 8
  end
end

⌨️ 快捷键说明

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