optionfrm.dfm

来自「delphi本地数据库引擎」· DFM 代码 · 共 76 行

DFM
76
字号
object OptionForm: TOptionForm
  Left = 255
  Top = 184
  BorderStyle = bsDialog
  Caption = '选项'
  ClientHeight = 192
  ClientWidth = 250
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 12
  object OpenTableModeRadioGroup: TRadioGroup
    Left = 8
    Top = 7
    Width = 233
    Height = 50
    Caption = '默认打开表的方式'
    Columns = 2
    ItemIndex = 0
    Items.Strings = (
      '表格方式'
      '卡片方式')
    TabOrder = 2
  end
  object MiscGroupBox: TGroupBox
    Left = 8
    Top = 64
    Width = 233
    Height = 85
    Caption = '杂项'
    TabOrder = 3
    object RemSizeCheckBox: TCheckBox
      Left = 16
      Top = 24
      Width = 199
      Height = 17
      Caption = '记住上次使用时窗口位置和大小'
      TabOrder = 0
    end
    object AddToMenuCheckBox: TCheckBox
      Left = 16
      Top = 52
      Width = 205
      Height = 17
      Caption = '加入资源管理器的右键菜单'
      TabOrder = 1
    end
  end
  object OkButton: TButton
    Left = 75
    Top = 158
    Width = 75
    Height = 25
    Caption = '确定(&O)'
    Default = True
    TabOrder = 0
    OnClick = OkButtonClick
  end
  object CancelButton: TButton
    Left = 166
    Top = 158
    Width = 75
    Height = 25
    Cancel = True
    Caption = '取消(&C)'
    TabOrder = 1
    OnClick = CancelButtonClick
  end
end

⌨️ 快捷键说明

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