checkform.dfm

来自「usb4711A数据采集卡的AD转换通道程序」· DFM 代码 · 共 91 行

DFM
91
字号
object frmCheck: TfrmCheck
  Left = 287
  Top = 321
  BorderStyle = bsDialog
  Caption = 'Check Event'
  ClientHeight = 132
  ClientWidth = 354
  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 Label1: TLabel
    Left = 40
    Top = 22
    Width = 70
    Height = 13
    Caption = 'Interrupt Count'
  end
  object Label2: TLabel
    Left = 12
    Top = 46
    Width = 101
    Height = 13
    Caption = 'Buffer change Count '
  end
  object Label4: TLabel
    Left = 224
    Top = 6
    Width = 54
    Height = 13
    Caption = 'Input Value'
  end
  object txtInt: TEdit
    Left = 128
    Top = 14
    Width = 65
    Height = 21
    ReadOnly = True
    TabOrder = 0
    Text = '0'
  end
  object txtBuffChange: TEdit
    Left = 128
    Top = 46
    Width = 65
    Height = 21
    ReadOnly = True
    TabOrder = 1
    Text = '0'
  end
  object txtValue: TEdit
    Left = 224
    Top = 22
    Width = 97
    Height = 21
    ReadOnly = True
    TabOrder = 2
    Text = '0'
  end
  object btnExit: TButton
    Left = 240
    Top = 54
    Width = 75
    Height = 25
    Caption = 'Terminate'
    TabOrder = 3
    OnClick = btnExitClick
  end
  object prgStatus: TProgressBar
    Left = 8
    Top = 96
    Width = 321
    Height = 25
    Min = 0
    Max = 100
    TabOrder = 4
  end
  object tmrCheck: TTimer
    Enabled = False
    Interval = 10
    OnTimer = tmrCheckTimer
    Left = 136
    Top = 70
  end
end

⌨️ 快捷键说明

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