resumedemo_u.dfm

来自「delphi老牌的浏览器控件」· DFM 代码 · 共 62 行

DFM
62
字号
object Form1: TForm1
  Left = 440
  Top = 219
  Caption = 'Resume Demo (IEDownload)'
  ClientHeight = 265
  ClientWidth = 494
  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 Label1: TLabel
    Left = 16
    Top = 208
    Width = 88
    Height = 13
    Caption = 'Estimated time left:'
  end
  object memo1: TMemo
    Left = 8
    Top = 16
    Width = 478
    Height = 161
    TabOrder = 0
  end
  object Button1: TButton
    Left = 74
    Top = 236
    Width = 115
    Height = 25
    Caption = 'Start Download'
    TabOrder = 1
    OnClick = Button1Click
  end
  object ProgressBar1: TProgressBar
    Left = 8
    Top = 184
    Width = 478
    Height = 17
    TabOrder = 2
  end
  object IEDownload1: TIEDownload
    AdditionalHeader.Strings = (
      'Content-Type: application/x-www-form-urlencoded')
    DefaultProtocol = 'http://'
    DefaultUrlFileName = 'index.html'
    OnDownloadComplete = IEDownload1DownloadComplete
    OnErrorText = IEDownload1ErrorText
    OnProgress = IEDownload1Progress
    OnRespondText = IEDownload1RespondText
    OnResponse = IEDownload1Response
    OnStatusText = IEDownload1StatusText
    UserAgent = 'Mozilla/4.0 (compatible; MSIE 6.0; Win32)'
    Left = 208
    Top = 232
  end
end

⌨️ 快捷键说明

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