-- 作者:有点甜
-- 发布时间:2019/1/27 11:51:00
--
参考
Select Case e.Path Case "test.htm", "" Dim wb As New WeUI Dim txt As String = "由各种物质组成的巨型球状天体,叫做星球.星球有一定的形状,有自己的运行轨道." \'增加三个页面,一个按钮 With wb.AddTabBar("", "tb1", 1) .AddPage("page1","微信","./images/button.png") .AddPage("page2","通讯录","./images/msg.png") .AddPage("page3","发现","./images/article.png") .AddButton("bt1","我","./images/cell.png","http://www.foxtable.com") End With \'为第二个页面增加内容 With wb.AddPanelGroup("page2","pg1","图文组合列表") .Add("pn1","标题一",txt,"./images/button.png","http://www.foxtable.com") With .Add("pn2","标题二",txt,"./images/search.png") .AddFoot("文字来源") .AddFoot("时间") .AddFoot("|其他信息","http://www.foxtable.com") End With .GroupFoot = "查看更多" .GroupHref = "http://www.foxtable.com/" End With \'为第三个页面增加内容 With wb.AddArticle("page3","ar1") .AddTitle("h1","发现") .AddTitle("h2","章标题") .AddTitle("h3","1.1节标题") .AddContent(txt) .AddImage("./images/001.jpg") .AddTitle("h3","1.2节标题") .AddContent(txt) .AddImage("./images/002.jpg") End With With wb.AddGrid("page1","g1") .Add("c1","Button", "./images/button.png").Attribute = "" .Add("c2","Cell", "./images/cell.png", "http://www.foxtable.com") .Add("c3","Toast", "./images/toast.png", "http://www.foxtable.com") .Add("c4","Dialog", "./images/dialog.png", "http://www.foxtable.com") .Add("c5","Progress", "./images/progress.png", "http://www.foxtable.com") .Add("c6","Msg", "./images/msg.png", "http://www.foxtable.com") .Add("c7","Article", "./images/article.png", "http://www.foxtable.com") .Add("c8","ActionSheet", "./images/actionSheet.png", "http://www.foxtable.com") .Add("c9","Icons", "./images/icons.png", "http://www.foxtable.com") .Add("c10","Panel", "./images/panel.png", "http://www.foxtable.com") .Add("c11","Tab", "./images/tab.png", "http://www.foxtable.com") .Add("c12","SearchBar", "./images/search.png", "http://www.foxtable.com") End With e.WriteString(wb.Build) End Select
|