main.dfm

来自「是一个delphi的流程制作软件」· DFM 代码 · 共 84 行

DFM
84
字号
object Form1: TForm1
  Left = 257
  Top = 102
  Width = 696
  Height = 480
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  Menu = MainMenu1
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Splitter1: TSplitter
    Left = 337
    Top = 0
    Width = 16
    Height = 434
    Cursor = crHSplit
  end
  object Memo1: TMemo
    Left = 0
    Top = 0
    Width = 337
    Height = 434
    Align = alLeft
    Lines.Strings = (
      'Memo1')
    TabOrder = 0
  end
  object TreeView1: TTreeView
    Left = 353
    Top = 0
    Width = 335
    Height = 434
    Align = alClient
    Indent = 19
    TabOrder = 1
  end
  object MainMenu1: TMainMenu
    Left = 200
    Top = 24
    object File1: TMenuItem
      Caption = 'File'
      object Run1: TMenuItem
        Caption = 'Open'
        OnClick = Run1Click
      end
      object N1: TMenuItem
        Caption = '-'
      end
      object Exit1: TMenuItem
        Caption = 'E&xit'
        OnClick = Exit1Click
      end
    end
    object Options1: TMenuItem
      Caption = 'Options'
      object ExpandAll1: TMenuItem
        Caption = 'Expand Tree'
        OnClick = ExpandAll1Click
      end
      object CollapseTree1: TMenuItem
        Caption = 'Collapse Tree'
        OnClick = CollapseTree1Click
      end
    end
  end
  object OpenDialog1: TOpenDialog
    Filter = 'XML|*.xml|All|*.*'
    Left = 272
    Top = 24
  end
  object DOMDocument1: TDOMDocument
    AutoConnect = False
    ConnectKind = ckRunningOrNew
    Left = 144
    Top = 56
  end
end

⌨️ 快捷键说明

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