main.dfm

来自「C++Builder程序员编程手记《配书光盘》」· DFM 代码 · 共 92 行

DFM
92
字号
object Form1: TForm1
  Left = 190
  Top = 107
  Width = 498
  Height = 369
  Caption = '窗口分割示例'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Splitter1: TSplitter
    Left = 145
    Top = 0
    Width = 3
    Height = 342
    Cursor = crHSplit
    ResizeStyle = rsUpdate
  end
  object Splitter2: TSplitter
    Left = 293
    Top = 0
    Width = 3
    Height = 342
    Cursor = crHSplit
    ResizeStyle = rsUpdate
  end
  object DirectoryListBox1: TDirectoryListBox
    Left = 0
    Top = 0
    Width = 145
    Height = 342
    Align = alLeft
    FileList = FileListBox1
    ItemHeight = 16
    TabOrder = 0
  end
  object FileListBox1: TFileListBox
    Left = 148
    Top = 0
    Width = 145
    Height = 342
    Align = alLeft
    ItemHeight = 13
    TabOrder = 1
  end
  object Panel1: TPanel
    Left = 296
    Top = 0
    Width = 194
    Height = 342
    Align = alClient
    BevelOuter = bvLowered
    Caption = 'Panel1'
    TabOrder = 2
    OnResize = Panel1Resize
    object Memo1: TMemo
      Left = 0
      Top = 0
      Width = 193
      Height = 153
      Lines.Strings = (
        'Memo1')
      TabOrder = 0
      OnMouseMove = Memo1MouseMove
      OnMouseUp = Memo1MouseUp
    end
    object Panel2: TPanel
      Left = 1
      Top = 153
      Width = 190
      Height = 3
      Cursor = crVSplit
      TabOrder = 1
    end
    object Memo2: TMemo
      Left = 0
      Top = 155
      Width = 193
      Height = 190
      Lines.Strings = (
        'Memo2')
      TabOrder = 2
    end
  end
end

⌨️ 快捷键说明

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