当收到新消息时,能自动显示未读新消息的条数。这显示“未读新消息的条数”,只能在配置栏有效果吗?
在快速访问栏里,图标可以显示登陆在线,就是无法显示“未读新消息的条数”
以下是在在菜单的SystemIdle事件增加以下代码:
'此段代码用于显示OpenQQ的未读消息
Static OpenQQ As RibbonMenu.Button
Static LastTime As Date
If OpenQQ Is Nothing Then
OpenQQ = QAT.Items("OpenQQ") ''快速访问栏的按钮
End If
Dim txt As String
If QQClient.Ready
If QQClient.UnreadCount > 0 Then
txt = "(" & QQClient.UnreadCount & "条)"
End If
End If
If OpenQQ.Text <> txt Then
OpenQQ.Text = txt
End If
If OpenQQ.Text > "" Then
Dim ntp As timeSpan = Date.Now - LastTime
If ntp.TotalSeconds >= 0.5 Then
LastTime = Date.Now
If OpenQQ.ForeColor = Color.Red Then
OpenQQ.ForeColor = Color.Transparent
Else
OpenQQ.ForeColor = Color.Red
End If
End If
End If
请问蓝老师,显示“未读新消息的条数”,只能在配置栏有效果吗?其他无效吗?
[此贴子已经被作者于2021/9/28 10:12:13编辑过]