wxPython:使用按钮在多个面板之间切换

时间:2016-05-05 22:23:50

标签: python wxpython

我想有两个(我将稍后添加)面板占据框架内的相同空间,并且当在工具栏上按下相应按钮时显示/隐藏它们,“mListPanel”应该是默认。目前,当启动应用程序并且按钮不执行任何操作时,将显示设置面板。我已经搜索并尝试了很多东西几个小时仍然无法让它工作。我很抱歉,如果这很简单,我今天才开始学习python。

这就是代码现在的样子:

    import wx

    class mListPanel(wx.Panel):
        def __init__(self, parent):
            wx.Panel.__init__(self, parent=parent)
                #wx.StaticText(self, -1, label='Search:')#, pos=(10, 3))
                #wx.TextCtrl(self, pos=(10, 10), size=(250, 50))

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

    class bifr(wx.Frame):
        def __init__(self):
            wx.Frame.__init__(self, None, wx.ID_ANY, "Title")

            self.listPanel = mListPanel(self)
            self.optPanel = settingsPanel(self)

            menuBar = wx.MenuBar()
            fileButton = wx.Menu()
            importItem = wx.Menu()
            fileButton.AppendMenu(wx.ID_ADD, 'Add M', importItem)
            importItem.Append(wx.ID_ANY, 'Import from computer')
            importItem.Append(wx.ID_ANY, 'Import from the internet')
            exitItem = fileButton.Append(wx.ID_EXIT, 'Exit')
            menuBar.Append(fileButton, 'File')
            self.SetMenuBar(menuBar)
            self.Bind(wx.EVT_MENU, self.Quit, exitItem)

            toolBar = self.CreateToolBar()
            homeToolButton = toolBar.AddLabelTool(wx.ID_ANY, 'Home', wx.Bitmap('icons/home_icon&32.png'))
            importLocalToolButton = toolBar.AddLabelTool(wx.ID_ANY, 'Import from computer', wx.Bitmap('icons/comp_icon&32.png'))
            importToolButton = toolBar.AddLabelTool(wx.ID_ANY, 'Import from the internet', wx.Bitmap('icons/arrow_bottom_icon&32.png'))
            settingsToolButton = toolBar.AddLabelTool(wx.ID_ANY, 'settings', wx.Bitmap('icons/wrench_plus_2_icon&32.png'))
            toolBar.Realize()

            self.Bind(wx.EVT_TOOL, self.switchPanels(), settingsToolButton)
            self.Bind(wx.EVT_TOOL, self.switchPanels(), homeToolButton)
            self.Layout()

        def switchPanels(self):
            if self.optPanel.IsShown():
                self.optPanel.Hide()
                self.listPanel.Show()
                self.SetTitle("Home")
            elif self.listPanel.IsShown():
                self.listPanel.Hide()
                self.optPanel.Show()
                self.SetTitle("Settings")
            else:
                self.SetTitle("Error")
            self.Layout()

        def Quit(self, e):
            self.Close()

    if __name__ == "__main__":
        app = wx.App(False)
        frame = bifr()
        frame.Show()
        app.MainLoop()

1 个答案:

答案 0 :(得分:1)

首先,我强烈建议您在深入研究wxpython之前,先了解wxpython sizers并了解它们(它们真的不是那么难理解),只是一个友好的小费 :)。

至于你的例子,一些事情: 当你不使用sizer时,你必须为每个窗口给出尺寸和位置,否则它们就不会显示,所以你必须将你的面板类改为这样的(再次这只是为了演示,你应该是使用wx.sizers执行此操作,而不是位置和大小):

class mListPanel(wx.Panel):
    def __init__(self, parent):
        wx.Panel.__init__(self, parent=parent,pos=(0,100),size=(500,500))

class settingsPanel(wx.Panel):
    def __init__(self, parent):
        wx.Panel.__init__(self, parent=parent,pos=(0,200),size (1000,1000))

此外,绑定事件时,它应如下所示:

self.Bind(wx.EVT_TOOL, self.switchPanels, settingsToolButton)
self.Bind(wx.EVT_TOOL, self.switchPanels, homeToolButton)

注意我是如何只编写没有添加()的函数的名称,因为事件被传递给它,你不能将自己的参数输入到事件发出的函数中(除非你用以下函数执行)语法lambda e:FooEventHandler(参数))

并且事件处理程序(函数)应该如下所示:

def switchPanels(self, event):
    if self.optPanel.IsShown():
        self.optPanel.Hide()
        self.listPanel.Show()
        self.SetTitle("Home")
    elif self.listPanel.IsShown():
        self.listPanel.Hide()
        self.optPanel.Show()
        self.SetTitle("Settings")
    else:
        self.SetTitle("Error")
    self.Layout()

在事件对象通过事件时,在绑定到事件的函数中,self旁边应该始终存在第二个参数,并且您可以在文档中找到其关联的方法和参数(在此示例中,它是wx.EVT_TOOL) )。