unit1.dfm

来自「《Visual C++编程技巧典型案例解析:基础与应用篇(下)(含1CD-ROM」· DFM 代码 · 共 74 行

DFM
74
字号
object Form1: TForm1
  Left = 243
  Top = 128
  Width = 237
  Height = 346
  Caption = '屏蔽词语例'
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 12
  object Button1: TButton
    Left = 24
    Top = 272
    Width = 88
    Height = 25
    Caption = '开始屏蔽'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 113
    Top = 272
    Width = 88
    Height = 25
    Caption = '停止屏蔽'
    Enabled = False
    TabOrder = 1
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 24
    Top = 8
    Width = 88
    Height = 25
    Caption = '添加词语'
    TabOrder = 2
    OnClick = Button3Click
  end
  object ListBox1: TListBox
    Left = 24
    Top = 64
    Width = 177
    Height = 201
    Enabled = False
    ItemHeight = 12
    TabOrder = 3
  end
  object Edit1: TEdit
    Left = 24
    Top = 40
    Width = 177
    Height = 20
    TabOrder = 4
  end
  object Button4: TButton
    Left = 113
    Top = 8
    Width = 88
    Height = 25
    Caption = '清空词语'
    TabOrder = 5
    OnClick = Button4Click
  end
  object Timer1: TTimer
    Enabled = False
    OnTimer = Timer1Timer
  end
end

⌨️ 快捷键说明

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