wxpython,滚动webView

时间:2016-03-30 15:00:34

标签: wxpython

我构建了一个webView作为wv=wx.html2.WebView.New(myFrame),我使用wv.setPage(content, "")来放置一串html文本,它显示得很好,并且在侧面有一个滚动条,因为内容不仅仅是窗口可以表现出来。

现在我希望控制webView并以编程方式滚动它(例如,让它每10秒滚动一行)。我尝试使用wv.ScrollLines(1)wv.ScrollWindow(1, 1),但他们没有回应。另外wv.GetScrollRange(0)wv.GetScrollRange(0)给了我0,即使wv.HasScrollbar(wx.VERTICAL)也返回了假。我尝试查找webView的文档,但没有找到任何其他与滚动相关的属性或函数。

你能帮我解决这个问题吗?非常感谢!!

1 个答案:

答案 0 :(得分:0)

我猜HasScrollbar会返回False,因为作为wx窗口,它没有滚动条;文档有滚动条。至于如何滚动,您可以选择两个选项:

1)使用方法Find。这将搜索文本,如果找到则滚动到该位置。例如,您可以使用wx.Timer并使用Find滚动到下一个位置:

import wx
import wx.html2

class MyFrame(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, None, wx.ID_ANY, "Scroll", size=(500,500))
        self.timer = wx.Timer(self)
        self.Bind(wx.EVT_TIMER, self._on_timer, self.timer)
        self.wv=wx.html2.WebView.New(self)
        self.wv.SetPage(content, "")
        self.timer.Start(100) # adjust the timer interval
    def _on_timer(self, event):
        self.wv.Find("Some string in the text")

app = wx.App()
frame = MyFrame()
frame.Show()
app.MainLoop()

2)使用javascript在文档中执行滚动,请参阅scrollTo