unit1.dfm

来自「<<C++Builder 6实用编程100例>>随书光盘」· DFM 代码 · 共 69 行

DFM
69
字号
object Form1: TForm1
  Left = 192
  Top = 115
  Width = 643
  Height = 399
  Caption = 'Image Explorer'
  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 FileListBox1: TFileListBox
    Left = 24
    Top = 223
    Width = 209
    Height = 121
    ItemHeight = 13
    Mask = '*.bmp'
    TabOrder = 0
    OnClick = FileListBox1Click
  end
  object DirectoryListBox1: TDirectoryListBox
    Left = 24
    Top = 53
    Width = 209
    Height = 129
    FileList = FileListBox1
    ItemHeight = 16
    TabOrder = 1
  end
  object DriveComboBox1: TDriveComboBox
    Left = 24
    Top = 24
    Width = 209
    Height = 19
    DirList = DirectoryListBox1
    TabOrder = 2
  end
  object FilterComboBox1: TFilterComboBox
    Left = 24
    Top = 192
    Width = 209
    Height = 21
    FileList = FileListBox1
    Filter = #20301#22270#25991#20214' (*.bmp)|*.bmp|'#25152#26377#25991#20214'(*.*)|*.*'
    TabOrder = 3
  end
  object Panel1: TPanel
    Left = 256
    Top = 16
    Width = 361
    Height = 337
    TabOrder = 4
    object Image1: TImage
      Left = 0
      Top = 0
      Width = 361
      Height = 337
      AutoSize = True
      OnMouseDown = IMage1MouseDown
      OnMouseMove = IMage1MouseMove
    end
  end
end

⌨️ 快捷键说明

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