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

📄 dfm.txt

📁 一个可以制作出和DELPHI很接近的IDE的好控健。只是稍微老了点。
💻 TXT
字号:
inherited SyntaxEdForm1: TSyntaxEdForm1
  PixelsPerInch = 96
  TextHeight = 13
  inherited pnlButtons: TPanel
    inherited btnOK: TButton
      Visible = False
    end
    inherited btnCancel: TButton
      Cancel = False
      Caption = 'Close'
      ModalResult = 0
      OnClick = btnCancelClick
    end
    inherited btnApply: TButton
      Visible = False
    end
  end
  object SyntaxParser1: TSyntaxParser
    SyntaxScheme.Name = 'INI files'
    SyntaxScheme.SyntaxBlocks = <
      item
        Name = 'Default'
        FIText = 0
        FIDirective = 1
        UseComments = True
        UseSingleLineComments = True
        UseFullLineComments = True
        UseStrings = True
        UseSingleLineStrings = True
        BlockDelimiters = <>
        SingleLineCommentDelimiters = <
          item
            FontID = 2
            LeftDelimiter = '='
          end>
        FullLineCommentDelimiters = <
          item
            FontID = 4
            LeftDelimiter = ';'
          end>
        SingleLineStringDelimiters = <
          item
            FontID = 3
            LeftDelimiter = '['
            RightDelimiter = ']'
          end>
      end>
    SyntaxScheme.FontTable = <
      item
        FontID = 0
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clBlue
        Font.Height = -13
        Font.Name = 'Courier New'
        Font.Style = []
      end
      item
        FontID = 1
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clGray
        Font.Height = -13
        Font.Name = 'Courier New'
        Font.Style = [fsItalic]
      end
      item
        FontID = 2
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clBlack
        Font.Height = -13
        Font.Name = 'Courier New'
        Font.Style = []
      end
      item
        FontID = 3
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clBlack
        Font.Height = -13
        Font.Name = 'Courier New'
        Font.Style = [fsBold]
      end
      item
        FontID = 4
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clGray
        Font.Height = -13
        Font.Name = 'Courier New'
        Font.Style = [fsItalic]
      end>
    DefaultFont.Charset = DEFAULT_CHARSET
    DefaultFont.Color = clWindowText
    DefaultFont.Height = -13
    DefaultFont.Name = 'Courier New'
    DefaultFont.Style = []
    Left = 80
    Top = 80
  end
end

⌨️ 快捷键说明

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