unitfrmmain.dfm

来自「《Delphi实用程序100例》配套书源码盘」· DFM 代码 · 共 66 行

DFM
66
字号
object Form1: TForm1
  Left = 114
  Top = 133
  Width = 544
  Height = 375
  Caption = '全屏幕拷贝的实现'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object ScrollBox1: TScrollBox
    Left = 72
    Top = 24
    Width = 273
    Height = 241
    TabOrder = 0
    object Image1: TImage
      Left = 32
      Top = 24
      Width = 185
      Height = 193
    end
  end
  object Panel1: TPanel
    Left = 56
    Top = 280
    Width = 265
    Height = 41
    TabOrder = 1
    object Button1: TButton
      Left = 16
      Top = 8
      Width = 75
      Height = 25
      Caption = 'full screen'
      TabOrder = 0
      OnClick = Button1Click
    end
    object Button2: TButton
      Left = 144
      Top = 8
      Width = 75
      Height = 25
      Caption = 'save'
      TabOrder = 1
      OnClick = Button2Click
    end
  end
  object Timer1: TTimer
    Enabled = False
    Interval = 500
    OnTimer = Timer1Timer
    Left = 392
    Top = 64
  end
  object SaveDialog1: TSaveDialog
    Left = 392
    Top = 144
  end
end

⌨️ 快捷键说明

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