unit2.dfm

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

DFM
69
字号
object Form1: TForm1
  Left = 208
  Top = 174
  Width = 451
  Height = 344
  Caption = '截图客户端'
  Color = clBtnFace
  Font.Charset = ANSI_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = 'Verdana'
  Font.Style = []
  OldCreateOrder = False
  OnClose = FormClose
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 14
  object Image1: TImage
    Left = 16
    Top = 40
    Width = 409
    Height = 265
    Stretch = True
  end
  object Label1: TLabel
    Left = 224
    Top = 16
    Width = 48
    Height = 14
    Caption = '文件大小'
  end
  object Edit1: TEdit
    Left = 32
    Top = 8
    Width = 89
    Height = 22
    ImeName = '中文 (简体) - 智能 ABC'
    TabOrder = 0
    Text = '127.0.0.1'
  end
  object Button1: TButton
    Left = 136
    Top = 8
    Width = 75
    Height = 25
    Caption = '建立连接'
    TabOrder = 1
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 352
    Top = 8
    Width = 75
    Height = 25
    Caption = '截图'
    TabOrder = 2
    OnClick = Button2Click
  end
  object ClientSocket1: TClientSocket
    Active = False
    ClientType = ctNonBlocking
    Port = 2002
    OnConnect = ClientSocket1Connect
    OnRead = ClientSocket1Read
    OnError = ClientSocket1Error
    Top = 8
  end
end

⌨️ 快捷键说明

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