newtab.dfm

来自「IDE开发环境」· DFM 代码 · 共 90 行

DFM
90
字号
object NewTabFrm: TNewTabFrm
  Left = 403
  Top = 204
  Width = 430
  Height = 157
  Caption = 'Add New BASIC File...'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 16
    Top = 16
    Width = 340
    Height = 13
    Caption = 
      'To create a new BASIC File, please fill out the information and ' +
      'press OK.'
  end
  object Label2: TLabel
    Left = 16
    Top = 40
    Width = 45
    Height = 13
    Caption = 'Filename:'
  end
  object CheckBox1: TCheckBox
    Left = 16
    Top = 64
    Width = 113
    Height = 17
    Caption = 'Is the file included?'
    TabOrder = 0
  end
  object Edit1: TEdit
    Left = 64
    Top = 40
    Width = 265
    Height = 21
    TabOrder = 1
  end
  object Button1: TButton
    Left = 336
    Top = 38
    Width = 25
    Height = 25
    Caption = '...'
    TabOrder = 2
    OnClick = Button1Click
  end
  object BitBtn1: TBitBtn
    Left = 88
    Top = 96
    Width = 75
    Height = 25
    TabOrder = 3
    OnClick = BitBtn1Click
    Kind = bkOK
  end
  object BitBtn2: TBitBtn
    Left = 168
    Top = 96
    Width = 75
    Height = 25
    TabOrder = 4
    Kind = bkCancel
  end
  object BitBtn3: TBitBtn
    Left = 248
    Top = 96
    Width = 75
    Height = 25
    TabOrder = 5
    Kind = bkHelp
  end
  object OpenDialog1: TOpenDialog
    Filter = 
      'BASIC Files (*.BAS)|*.BAS|Rapid-Q BASIC Files (*.rq*)|*.rq*|Kool' +
      'BASIC BASIC Files (*.kbs)|*.kbs|All Files (*.*)|*.*'
    Title = 'Select File...'
    Left = 376
    Top = 56
  end
end

⌨️ 快捷键说明

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