unit4.dfm

来自「同学录第二版(源代码)」· DFM 代码 · 共 71 行

DFM
71
字号
object Form4: TForm4
  Left = 352
  Top = 192
  Width = 322
  Height = 196
  Caption = '位图选择'
  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 = 160
    Top = 32
    Width = 145
    Height = 97
    ItemHeight = 13
    Mask = '*.bmp'
    TabOrder = 0
    OnDblClick = BitBtn1Click
  end
  object DirectoryListBox1: TDirectoryListBox
    Left = 8
    Top = 32
    Width = 145
    Height = 97
    FileList = FileListBox1
    ItemHeight = 16
    TabOrder = 1
  end
  object DriveComboBox1: TDriveComboBox
    Left = 8
    Top = 8
    Width = 145
    Height = 19
    DirList = DirectoryListBox1
    TabOrder = 2
  end
  object FilterComboBox1: TFilterComboBox
    Left = 160
    Top = 8
    Width = 145
    Height = 21
    FileList = FileListBox1
    Filter = '位图文件(*.bmp)|*.bmp'
    TabOrder = 3
  end
  object BitBtn1: TBitBtn
    Left = 64
    Top = 136
    Width = 75
    Height = 25
    Caption = '确定'
    TabOrder = 4
    OnClick = BitBtn1Click
  end
  object BitBtn2: TBitBtn
    Left = 168
    Top = 136
    Width = 75
    Height = 25
    Caption = '取消'
    TabOrder = 5
    OnClick = BitBtn2Click
  end
end

⌨️ 快捷键说明

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