通过WXnotebook中的选项卡自动制表

时间:2018-10-17 16:12:10

标签: python wxpython wxwidgets wxpython-phoenix wxnotebook

我有一本WXnotebook,它具有不同数量的选项卡,具体取决于程序提取的信息量。我的目标是对每个选项卡显示的信息进行屏幕截图并存储这些图像。 程序在选项卡上遇到问题。我在想类似

         for i in range(numOfTabs):
            self.waferTab.ChangeSelection(i)
            time.sleep(3)

但这仅显示了wxnotebook中的最后一个标签。如果有人知道如何获得这个,我将非常感激。

编辑

所以我尝试了以下建议的操作,但是显示了GUI,但是当它出现时看起来它已经遍历整个循环并显示选择是最后一个选项卡,但我仍然看不到屏幕实际上正在通过这些选项卡

          for i in range(numOfTabs):
            self.waferTab.SetSelection(i)
            Refresh
            wx.SafeYield()
            time.sleep(10)

1 个答案:

答案 0 :(得分:1)

我不知道您为什么要这样做,因为它似乎使用户无法使用,但是下面是使用wx.Timer的示例:

import random
import wx


class TabPanel(wx.Panel):

    def __init__(self, parent):
        """"""
        wx.Panel.__init__(self, parent=parent)

        colors = ["red", "blue", "gray", "yellow", "green"]
        self.SetBackgroundColour(random.choice(colors))

        btn = wx.Button(self, label="Press Me")
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(btn, 0, wx.ALL, 10)
        self.SetSizer(sizer)


class DemoFrame(wx.Frame):
    """
    Frame that holds all other widgets
    """

    def __init__(self):
        """Constructor"""        
        wx.Frame.__init__(self, None, wx.ID_ANY, 
                          "Notebook Tutorial",
                          size=(600,400)
                          )
        panel = wx.Panel(self)
        self.timer = wx.Timer(self)
        self.Bind(wx.EVT_TIMER, self.change_tabs, self.timer)
        self.timer.Start(1000)

        self.notebook = wx.Notebook(panel)
        tabOne = TabPanel(self.notebook)
        self.notebook.AddPage(tabOne, "Tab 1")

        tabTwo = TabPanel(self.notebook)
        self.notebook.AddPage(tabTwo, "Tab 2")

        tabThree = TabPanel(self.notebook)
        self.notebook.AddPage(tabThree, 'Tab 3')

        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.notebook, 1, wx.ALL|wx.EXPAND, 5)
        panel.SetSizer(sizer)
        self.Layout()

        self.Show()

    def change_tabs(self, event):
        current_selection = self.notebook.GetSelection()
        print(current_selection)
        pages = self.notebook.GetPageCount()
        if current_selection + 1 == pages:
            self.notebook.ChangeSelection(0)
        else:
            self.notebook.ChangeSelection(current_selection + 1)


if __name__ == "__main__":
    app = wx.App(True)
    frame = DemoFrame()
    app.MainLoop()

您还可以使用线程并使用类似wx.CallAfter之类的东西来更新UI,但是在这种情况下,我认为计时器更有意义。