以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  [求助]在菜单提示新消息,未读消息不闪  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=176816)

--  作者:洮沙
--  发布时间:2022/4/27 18:50:00
--  [求助]在菜单提示新消息,未读消息不闪

老师,参照帮助文件在菜单设置显示OpenQQ新消息提示按钮,能显示统计,就是不闪(颜色不变,一直黑色字体),麻烦老师帮忙看一下,谢谢!

 


图片点击可在新窗口打开查看此主题相关图片如下:微信截图_20220427184629.png
图片点击可在新窗口打开查看

 

菜单的SystemIdle事件代码如下:

\'此段代码用于显示OpenQQ的未读消息
Static 聊天平台 As RibbonMenu.Button
Static LastTime As Date
If 聊天平台 Is Nothing Then
    聊天平台 = ConfigBar.Items("聊天平台")
End If
Dim txt As String = "聊天平台"
If QQClient.Ready Then
    If QQClient.UnreadCount > 0 Then
        txt = "(" & QQClient.UnreadCount & "条)"
    End If
End If
If 聊天平台.Text <> txt Then
    聊天平台.Text = txt
End If
If 聊天平台.Text <> "聊天平台" Then
    Dim ntp As timeSpan = Date.Now - LastTime
    If ntp.TotalSeconds >= 0.5 Then
        LastTime = Date.Now
        If 聊天平台.ForeColor = Color.Red Then
            聊天平台.ForeColor = Color.Transparent
        Else
            聊天平台.ForeColor = Color.Red
        End If
    End If
End If

[此贴子已经被作者于2022/4/27 18:57:04编辑过]

--  作者:有点蓝
--  发布时间:2022/4/28 9:00:00
--  
请上传实例测试
--  作者:洮沙
--  发布时间:2022/4/28 9:12:00
--  

老师,你好!经测试,红色代码不执行,蓝色代码能执行,不知道什么原因,别的项目也测试了一样的结果,麻烦你看一下:

 

If 聊天平台.Text <> "聊天平台" Then
    Dim ntp As timeSpan = Date.Now - LastTime
    If ntp.TotalSeconds >= 0.5 Then
        LastTime = Date.Now
        If 聊天平台.ForeColor = Color.Red Then
            聊天平台.ForeColor = Color.Transparent
        Else
            聊天平台.ForeColor = Color.Red
        End If

        \'加入以下测试代码执行
         If 聊天平台.Text = “25” Then
            聊天平台.Text = “52”
        Else
             聊天平台.Text = “25”
        End If
   

     End If
End If

[此贴子已经被作者于2022/4/28 9:12:51编辑过]

--  作者:有点蓝
--  发布时间:2022/4/28 9:17:00
--  
请提供实例测试
--  作者:洮沙
--  发布时间:2022/4/28 9:32:00
--  
 下载信息  [文件大小:   下载次数: ]
图片点击可在新窗口打开查看点击浏览该文件:菜单测试.zip

老师,我简单做了一个项目,你看一下配置栏“聊天平台”标题不变颜色。
--  作者:有点蓝
--  发布时间:2022/4/28 9:49:00
--  
到项目属性把菜单样式改为“Foxtable经典蓝”,或者其它2个经典样式
--  作者:洮沙
--  发布时间:2022/4/28 10:18:00
--  

改成“经典蓝”合适了,谢谢!