以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  [求助]如何标识TopicBar被选中的Link?  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=70444)

--  作者:hotday1972
--  发布时间:2015/6/22 10:40:00
--  [求助]如何标识TopicBar被选中的Link?
 用图标或者粗体什么的标识被选中的TopicLink,该怎么实现?求教
--  作者:sloyy
--  发布时间:2015/6/22 11:57:00
--  

TopicPageExpanded 事件


Dim tpb As WinForm.TopicBar = e.Form.Controls("TopicBar1")

For Each page As WinForm.TopicPage In tpb.Pages

    If page.Name <> e.Page.Name Then

        page.Collapsed = True

    End If

Next

e.Page.ImageFile="2403.ico"


TopicPageCollapsed 事件

e.Page.ImageFile=nothing







--  作者:hotday1972
--  发布时间:2015/6/22 14:16:00
--  
 谢谢!