unit1.dfm

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

DFM
62
字号
object Form1: TForm1
  Left = 192
  Top = 107
  Width = 544
  Height = 375
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clRed
  Font.Height = -19
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 24
  object ListBox1: TListBox
    Left = 64
    Top = 72
    Width = 185
    Height = 177
    ItemHeight = 24
    Items.Strings = (
      '1111'
      '2222'
      '3333'
      '4444'
      '5555'
      '6666'
      '7777'
      '8888'
      '9999'
      '0000')
    TabOrder = 0
    OnClick = ListBox1Click
  end
  object Button1: TButton
    Left = 320
    Top = 72
    Width = 97
    Height = 33
    Caption = '添加'
    TabOrder = 1
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 320
    Top = 144
    Width = 97
    Height = 33
    Caption = '删除'
    TabOrder = 2
    OnClick = Button2Click
  end
  object Edit1: TEdit
    Left = 64
    Top = 24
    Width = 185
    Height = 25
    TabOrder = 3
  end
end

⌨️ 快捷键说明

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