unit1.dfm

来自「Delphi快速开发Web Server」· DFM 代码 · 共 59 行

DFM
59
字号
object Form1: TForm1
  Left = 205
  Top = 141
  Width = 571
  Height = 407
  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
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 16
    Top = 16
    Width = 44
    Height = 13
    Caption = 'FileName'
  end
  object Edit1: TEdit
    Left = 72
    Top = 16
    Width = 121
    Height = 21
    TabOrder = 0
    Text = '/'
    OnKeyPress = Edit1KeyPress
  end
  object Memo1: TMemo
    Left = 16
    Top = 48
    Width = 537
    Height = 313
    ScrollBars = ssBoth
    TabOrder = 1
  end
  object RtcHttpClient1: TRtcHttpClient
    MultiThreaded = True
    ServerAddr = 'www.realthinclient.net'
    ServerPort = '80'
    AutoConnect = True
    UseProxy = True
    Left = 272
    Top = 8
  end
  object DataReq: TRtcDataRequest
    AutoSyncEvents = True
    Client = RtcHttpClient1
    OnBeginRequest = DataReqBeginRequest
    OnDataReceived = DataReqDataReceived
    Left = 312
    Top = 8
  end
end

⌨️ 快捷键说明

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