main.dfm

来自「这是一套全面的网络组件」· DFM 代码 · 共 62 行

DFM
62
字号
object MainForm: TMainForm
  Left = 270
  Top = 265
  BorderStyle = bsDialog
  Caption = 'Update Manager'
  ClientHeight = 112
  ClientWidth = 375
  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 = 16
    Width = 54
    Height = 13
    Caption = 'Update File'
  end
  object edtUpdateFile: TEdit
    Left = 16
    Top = 32
    Width = 345
    Height = 21
    TabOrder = 0
    Text = 'webupdate.xml'
  end
  object btnEdit: TButton
    Left = 208
    Top = 64
    Width = 75
    Height = 25
    Caption = 'Edit'
    TabOrder = 1
    OnClick = btnEditClick
  end
  object btnClose: TButton
    Left = 288
    Top = 64
    Width = 75
    Height = 25
    Caption = 'Close'
    TabOrder = 2
    OnClick = btnCloseClick
  end
  object clWebUpdate: TclWebUpdate
    UpdateDir = '.\'
    ActualUpdateInfoFile = 'lastupdate.xml'
    BatchSize = 8192
    ErrorWords.Strings = (
      'fatal'
      'failed'
      'error')
    Left = 168
    Top = 64
  end
end

⌨️ 快捷键说明

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