unit1.dfm

来自「delphi课程设计的内容,包括源代码,文本的设计,菜单的设计等.」· DFM 代码 · 共 58 行

DFM
58
字号
object Form1: TForm1
  Left = 192
  Top = 107
  Width = 544
  Height = 375
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clRed
  Font.Height = -24
  Font.Name = 'MS Sans Serif'
  Font.Style = [fsBold]
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 29
  object ListBox1: TListBox
    Left = 64
    Top = 64
    Width = 129
    Height = 193
    ItemHeight = 29
    Items.Strings = (
      'aaaaaaa'
      'bbbbbbb'
      'ccccccc'
      'ddddddd'
      'eeeeeee'
      'hhhhhhh')
    TabOrder = 0
  end
  object ListBox2: TListBox
    Left = 328
    Top = 64
    Width = 121
    Height = 193
    ItemHeight = 29
    TabOrder = 1
  end
  object Button1: TButton
    Left = 200
    Top = 64
    Width = 121
    Height = 41
    Caption = '>'
    TabOrder = 2
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 200
    Top = 144
    Width = 121
    Height = 41
    Caption = '<'
    TabOrder = 3
    OnClick = Button2Click
  end
end

⌨️ 快捷键说明

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