⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jdevdisassemblydialog.dfm

📁 一个不出名的GBA模拟器
💻 DFM
字号:
object jdevDisasmDialog: TjdevDisasmDialog
  Left = 272
  Top = 139
  BorderStyle = bsToolWindow
  Caption = 'Disassembly Options'
  ClientHeight = 328
  ClientWidth = 354
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  Menu = mainMenu
  OldCreateOrder = False
  Position = poDefaultPosOnly
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object lDestination: TLabel
    Left = 8
    Top = 8
    Width = 56
    Height = 13
    Caption = 'Destination:'
  end
  object lCommands: TLabel
    Left = 8
    Top = 56
    Width = 55
    Height = 13
    Caption = 'Commands:'
  end
  object lTargetASM: TLabel
    Left = 8
    Top = 280
    Width = 85
    Height = 13
    Caption = 'Target Assembler:'
  end
  object eDestFile: TEdit
    Left = 8
    Top = 24
    Width = 305
    Height = 21
    TabOrder = 0
    Text = 'eDestFile'
  end
  object browseButton: TButton
    Left = 320
    Top = 24
    Width = 25
    Height = 21
    Caption = '...'
    TabOrder = 1
    OnClick = browseButtonClick
  end
  object tasks: TListView
    Left = 8
    Top = 72
    Width = 337
    Height = 161
    Columns = <
      item
        Caption = 'Label'
        Width = 115
      end
      item
        Caption = 'Address'
        Width = 70
      end
      item
        Caption = 'Length'
        Width = 72
      end
      item
        Caption = 'Mode'
        Width = 60
      end>
    RowSelect = True
    SortType = stBoth
    TabOrder = 2
    ViewStyle = vsReport
    OnCompare = tasksCompare
  end
  object okButton: TButton
    Left = 208
    Top = 296
    Width = 67
    Height = 25
    Caption = 'OK'
    Default = True
    TabOrder = 11
    OnClick = okButtonClick
  end
  object cancelButton: TButton
    Left = 280
    Top = 296
    Width = 67
    Height = 25
    Cancel = True
    Caption = 'Cancel'
    TabOrder = 12
    OnClick = cancelButtonClick
  end
  object rTargetARM: TRadioButton
    Left = 16
    Top = 300
    Width = 73
    Height = 17
    Caption = 'ARM SDT'
    Checked = True
    TabOrder = 9
    TabStop = True
  end
  object rTargetGAS: TRadioButton
    Left = 104
    Top = 300
    Width = 49
    Height = 17
    Caption = 'GAS'
    Enabled = False
    TabOrder = 10
  end
  object addButton: TButton
    Left = 104
    Top = 262
    Width = 65
    Height = 25
    Caption = 'Add'
    TabOrder = 7
    OnClick = addButtonClick
  end
  object removeButton: TButton
    Left = 176
    Top = 262
    Width = 67
    Height = 25
    Caption = 'Remove'
    TabOrder = 8
    OnClick = removeButtonClick
  end
  object eLabel: TEdit
    Left = 8
    Top = 235
    Width = 121
    Height = 21
    TabOrder = 3
  end
  object eMode: TComboBox
    Left = 280
    Top = 235
    Width = 65
    Height = 21
    ItemHeight = 13
    TabOrder = 6
    Items.Strings = (
      'ARM'
      'Thumb'
      'Data')
  end
  object eSize: TEdit
    Left = 208
    Top = 235
    Width = 65
    Height = 21
    TabOrder = 5
  end
  object eAddress: TEdit
    Left = 136
    Top = 235
    Width = 65
    Height = 21
    TabOrder = 4
  end
  object saveDialog: TSaveDialog
    DefaultExt = 'asm'
    Filter = 'Assembler File|*.asm;*.s|All Files|*.*'
    Left = 192
  end
  object mainMenu: TMainMenu
    Left = 225
    object mFile: TMenuItem
      Caption = 'File'
      object mLoadScript: TMenuItem
        Caption = 'Load Script...'
        OnClick = LoadScript
      end
      object mSaveScript: TMenuItem
        Caption = 'Save Script...'
        OnClick = SaveScript
      end
    end
  end
  object openDialog: TOpenDialog
    Options = [ofHideReadOnly, ofFileMustExist, ofEnableSizing]
    Left = 160
  end
end

⌨️ 快捷键说明

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