Private Sub UserControl_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
  If Not ((X < 0) Or (Y < 0) Or (X > Width) Or (Y > Height)) Then
    API.ReleaseCapture
    lbl.ForeColor = lblColor
    Set lbl.Font = lblFont
  Else
    API.SetCapture UserControl.hWnd
    lblColor = lbl.ForeColor
    Set lblFont = lbl.Font
    lbl.ForeColor = pColor
    Set lbl.Font = oFont
  End If
End Sub
API是模块,声明了两个API钩子,为什么没有颜色和字体变化??