jdevevalmodify.dfm

来自「一个不出名的GBA模拟器」· DFM 代码 · 共 73 行

DFM
73
字号
object jdevModify: TjdevModify
  Left = 208
  Top = 96
  BorderStyle = bsDialog
  Caption = 'Evaluate & Modify'
  ClientHeight = 235
  ClientWidth = 392
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  FormStyle = fsStayOnTop
  KeyPreview = True
  OldCreateOrder = False
  Position = poMainFormCenter
  OnCreate = FormCreate
  OnDeactivate = FormDeactivate
  OnHide = FormHide
  PixelsPerInch = 96
  TextHeight = 13
  object lExpression: TLabel
    Left = 8
    Top = 8
    Width = 54
    Height = 13
    Caption = 'Expression:'
  end
  object lResult: TLabel
    Left = 8
    Top = 56
    Width = 33
    Height = 13
    Caption = 'Result:'
  end
  object results: TMemo
    Left = 8
    Top = 72
    Width = 377
    Height = 129
    ScrollBars = ssVertical
    TabOrder = 1
  end
  object source: TComboBox
    Left = 8
    Top = 24
    Width = 377
    Height = 21
    ItemHeight = 13
    TabOrder = 0
    OnKeyPress = sourceKeyPress
  end
  object bListAll: TButton
    Left = 248
    Top = 208
    Width = 65
    Height = 21
    Caption = 'List All'
    TabOrder = 3
    OnClick = ListAllVariables
  end
  object bClear: TButton
    Left = 320
    Top = 208
    Width = 65
    Height = 21
    Caption = 'Clear'
    TabOrder = 2
    OnClick = ClearResults
  end
end

⌨️ 快捷键说明

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