message.dfm

来自「zip算法的源码」· DFM 代码 · 共 110 行

DFM
110
字号
object MsgForm: TMsgForm
  Left = 221
  Top = 209
  Width = 575
  Height = 425
  Caption = 'Zip Messages'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -10
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  OnCreate = FormCreate
  OnResize = FormResize
  PixelsPerInch = 96
  TextHeight = 13
  object Panel2: TPanel
    Left = 0
    Top = 347
    Width = 567
    Height = 25
    Align = alBottom
    BevelOuter = bvNone
    TabOrder = 2
    object DismissBut: TButton
      Left = 372
      Top = 4
      Width = 118
      Height = 20
      Caption = '&Dismiss this Window'
      TabOrder = 1
      OnClick = DismissButClick
    end
    object CancelBut: TButton
      Left = 192
      Top = 4
      Width = 104
      Height = 20
      Cancel = True
      Caption = '&Cancel Operation'
      TabOrder = 0
      OnClick = CancelButClick
    end
  end
  object Panel1: TPanel
    Left = 0
    Top = 0
    Width = 567
    Height = 29
    Align = alTop
    TabOrder = 0
    object FileBeingZipped: TLabel
      Left = 259
      Top = 8
      Width = 105
      Height = 13
      Alignment = taRightJustify
      Caption = 'File being manipulated'
    end
    object ProgressBar1: TProgressBar
      Left = 376
      Top = 8
      Width = 177
      Height = 13
      Min = 1
      Max = 10001
      Position = 1
      Step = 100
      TabOrder = 0
    end
  end
  object RichEdit1: TRichEdit
    Left = 0
    Top = 29
    Width = 567
    Height = 318
    Align = alClient
    Font.Charset = ANSI_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Courier New'
    Font.Style = []
    ParentFont = False
    ScrollBars = ssVertical
    TabOrder = 1
  end
  object StatusBar1: TStatusBar
    Left = 0
    Top = 372
    Width = 567
    Height = 19
    Panels = <
      item
        Bevel = pbNone
        Width = 110
      end
      item
        Bevel = pbNone
        Width = 80
      end
      item
        Style = psOwnerDraw
        Width = 150
      end>
    SimplePanel = False
  end
end

⌨️ 快捷键说明

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