sections.dfm

来自「Delphi写的PE查看器」· DFM 代码 · 共 72 行

DFM
72
字号
object SectionsFrm: TSectionsFrm
  Left = 209
  Top = 237
  BorderStyle = bsDialog
  Caption = 'Section Table'
  ClientHeight = 240
  ClientWidth = 505
  Color = clBtnFace
  Font.Charset = ANSI_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  OnShow = FormShow
  PixelsPerInch = 96
  TextHeight = 13
  object SectionListView: TListView
    Left = 8
    Top = 8
    Width = 489
    Height = 185
    Columns = <
      item
        Caption = 'Name'
        Width = 80
      end
      item
        Caption = 'VOffset'
        Width = 80
      end
      item
        Caption = 'VSize'
        Width = 80
      end
      item
        Caption = 'ROffset'
        Width = 80
      end
      item
        Caption = 'RSize'
        Width = 80
      end
      item
        Caption = 'Flags'
        Width = 80
      end>
    RowSelect = True
    TabOrder = 0
    ViewStyle = vsReport
  end
  object Button1: TButton
    Left = 8
    Top = 208
    Width = 105
    Height = 22
    Caption = 'View info'
    TabOrder = 1
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 120
    Top = 208
    Width = 105
    Height = 22
    Caption = 'OK'
    TabOrder = 2
    OnClick = Button2Click
  end
end

⌨️ 快捷键说明

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