lightcontrolu.dfm

来自「source for card readers」· DFM 代码 · 共 62 行

DFM
62
字号
object frmTrafficLight: TfrmTrafficLight
  Left = 165
  Top = 114
  Width = 224
  Height = 296
  Caption = ' Traffic Light'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -14
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = True
  OnShow = FormShow
  PixelsPerInch = 120
  TextHeight = 16
  object lblTrafficLight: TLabel
    Left = 0
    Top = 232
    Width = 216
    Height = 24
    Align = alBottom
    Alignment = taCenter
    Caption = 'Stop'
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -20
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    ParentFont = False
  end
  object shpRed: TShape
    Left = 79
    Top = 10
    Width = 60
    Height = 60
    Brush.Color = clRed
    Shape = stCircle
  end
  object shpYellow: TShape
    Left = 79
    Top = 79
    Width = 60
    Height = 60
    Brush.Color = clBlack
    Shape = stCircle
  end
  object shpGreen: TShape
    Left = 79
    Top = 148
    Width = 60
    Height = 60
    Brush.Color = clBlack
    Shape = stCircle
  end
  object tmrTrafficLight: TTimer
    Enabled = False
    Interval = 4000
    OnTimer = tmrTrafficLightTimer
  end
end

⌨️ 快捷键说明

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