unit1.dfm

来自「Delphi 7组件与分布式应用开发源码,介绍了基础的组件应用实例」· DFM 代码 · 共 75 行

DFM
75
字号
object Form1: TForm1
  Left = 250
  Top = 170
  Width = 696
  Height = 480
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 13
  object Image1: TImage
    Left = 0
    Top = 33
    Width = 688
    Height = 420
    Align = alClient
    Stretch = True
  end
  object Panel1: TPanel
    Left = 0
    Top = 0
    Width = 688
    Height = 33
    Align = alTop
    Caption = 'Panel1'
    TabOrder = 0
    object SpeedButton1: TSpeedButton
      Left = 0
      Top = 0
      Width = 33
      Height = 33
      OnClick = SpeedButton1Click
    end
    object SpeedButton2: TSpeedButton
      Left = 32
      Top = 0
      Width = 33
      Height = 33
      OnClick = SpeedButton2Click
    end
  end
  object Button1: TButton
    Left = 592
    Top = 312
    Width = 75
    Height = 25
    Caption = #20851#38381
    TabOrder = 1
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 592
    Top = 384
    Width = 75
    Height = 25
    Caption = #26368#23567#21270
    TabOrder = 2
    OnClick = Button2Click
  end
  object SaveDialog1: TSaveDialog
    FileName = '*.bmp'
    Filter = 'Bitmap Files(*.bmp)|*.bmp|Any Files(*.*)|*.* '
    InitialDir = 'c:\bmp'
    Title = 'Save Bitmap'
    Left = 568
  end
end

⌨️ 快捷键说明

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