ukeyboard.dfm

来自「搞笑俄罗斯方块这个程序由delphi制作而成。」· DFM 代码 · 共 67 行

DFM
67
字号
object KeyForm: TKeyForm
  Left = 231
  Top = 168
  BorderIcons = []
  BorderStyle = bsSingle
  Caption = '键盘'
  ClientHeight = 138
  ClientWidth = 236
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 12
  object GroupBox1: TGroupBox
    Left = 8
    Top = 8
    Width = 217
    Height = 89
    Caption = '方块转换键设定'
    TabOrder = 0
    object RadioButton1: TRadioButton
      Left = 16
      Top = 52
      Width = 113
      Height = 17
      Caption = '空格键(Space)'
      TabOrder = 0
      OnClick = RadioButton1Click
    end
    object RadioButton2: TRadioButton
      Left = 16
      Top = 28
      Width = 113
      Height = 17
      Caption = '向上方向键(Up)'
      Checked = True
      TabOrder = 1
      TabStop = True
      OnClick = RadioButton2Click
    end
  end
  object ButtonOk: TButton
    Left = 33
    Top = 107
    Width = 75
    Height = 25
    Caption = '确定'
    Default = True
    ModalResult = 1
    TabOrder = 1
  end
  object ButtonCancel: TButton
    Left = 129
    Top = 107
    Width = 75
    Height = 25
    Caption = '取消'
    ModalResult = 2
    TabOrder = 2
  end
end

⌨️ 快捷键说明

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