在wxPython中创建滚动面板

时间:2014-01-27 10:04:48

标签: python wxpython wxwidgets

等级:初学者

我最近开始使用wxPython编写GUI应用程序。我在创建可滚动面板时遇到问题。我已经有一个wx.Frame工作正常。我的gui有2个面板。 (请暂时忽略面板-3)我想让我的面板2可滚动,以便它可以包含更多元素。我的GUI的基本结构如下:

GUI demo

我尝试在代码中使用wx.lib.scrolledpanel.ScrolledPanel()但滚动条由于某种原因没有出现。我的代码如下:

panel2 = wx.lib.scrolledpanel.ScrolledPanel(self,-1, size=(600,400), pos=(0,28), style=wx.SIMPLE_BORDER)
panel2.SetupScrolling()
button1 = wx.Button(panel2,label="Button 1",pos=(0,50),size=(50,50))
button2 = wx.Button(panel2,label="Button 2",pos=(0,100), size=(50,50))
button3 = wx.Button(panel2,label="Button 3",pos=(0,150),size=(50,50))
button4 = wx.Button(panel2,label="Button 4",pos=(0,200), size=(50,50))
button5 = wx.Button(panel2,label="Button 5",pos=(0,250),size=(50,50))
button6 = wx.Button(panel2,label="Button 6",pos=(0,300), size=(50,50))
button7 = wx.Button(panel2,label="Button 7",pos=(0,350), size=(50,50))
button8 = wx.Button(panel2,label="Button 8",pos=(0,400), size=(50,50))

目前,当我执行我的代码时,我得到的面板2只有7个按钮而不是8.我希望第8个按钮会创建滚动条,因为它不适合面板2的尺寸。 任何人都可以建议什么可以解决我的问题,或者我错过了什么?

感谢您的时间和 PS:有一个类似的问题here,但没有回答。

完整的代码可以在下面找到:

import wx
import wx.lib.scrolledpanel

    class GUI(wx.Frame):

        def __init__(self,parent,id,title):
            #First retrieve the screen size of the device
            screenSize = wx.DisplaySize()
            screenWidth = screenSize[0]
            screenHeight = screenSize[1]

            #Create a frame
            wx.Frame.__init__(self,parent,id,title,size=screenSize, style=wx.DEFAULT_FRAME_STYLE ^ wx.RESIZE_BORDER)

            panel1 = wx.Panel(self,size=(screenWidth,28), pos=(0,0), style=wx.SIMPLE_BORDER)
            panel1.SetBackgroundColour('#FDDF99')
            panel2 = wx.lib.scrolledpanel.ScrolledPanel(self,-1, size=(screenWidth,400), pos=(0,28), style=wx.SIMPLE_BORDER)
            panel2.SetupScrolling()
            panel2.SetBackgroundColour('#FFFFFF')
            button1 = wx.Button(panel2,label="Button 1",pos=(0,50),size=(50,50))
            button2 = wx.Button(panel2,label="Button 2",pos=(0,100), size=(50,50))
            button3 = wx.Button(panel2,label="Button 3",pos=(0,150),size=(50,50))
            button4 = wx.Button(panel2,label="Button 4",pos=(0,200), size=(50,50))
            button5 = wx.Button(panel2,label="Button 5",pos=(0,250),size=(50,50))
            button6 = wx.Button(panel2,label="Button 6",pos=(0,300), size=(50,50))
            button7 = wx.Button(panel2,label="Button 7",pos=(0,350), size=(50,50))
            button8 = wx.Button(panel2,label="Button 8",pos=(0,400), size=(50,50))


    if __name__=='__main__':
        app = wx.App()
        frame = GUI(parent=None, id=-1, title="Test")
        frame.Show()
        app.MainLoop()

1 个答案:

答案 0 :(得分:7)

您可以在滚动面板中添加sizer以包含所有按钮。 这些代码应该有效:

import wx
import wx.lib.scrolledpanel

class GUI(wx.Frame):

def __init__(self,parent,id,title):
    #First retrieve the screen size of the device
    screenSize = wx.DisplaySize()
    screenWidth = screenSize[0]
    screenHeight = screenSize[1]

    #Create a frame
    wx.Frame.__init__(self,parent,id,title,size=screenSize, style=wx.DEFAULT_FRAME_STYLE ^ wx.RESIZE_BORDER)

    panel1 = wx.Panel(self,size=(screenWidth,28), pos=(0,0), style=wx.SIMPLE_BORDER)
    panel1.SetBackgroundColour('#FDDF99')
    panel2 = wx.lib.scrolledpanel.ScrolledPanel(self,-1, size=(screenWidth,400), pos=(0,28), style=wx.SIMPLE_BORDER)
    panel2.SetupScrolling()
    panel2.SetBackgroundColour('#FFFFFF')


    button1 = wx.Button(panel2,label="Button 1",pos=(0,50),size=(50,50))
    button2 = wx.Button(panel2,label="Button 2",pos=(0,100), size=(50,50))
    button3 = wx.Button(panel2,label="Button 3",pos=(0,150),size=(50,50))
    button4 = wx.Button(panel2,label="Button 4",pos=(0,200), size=(50,50))
    button5 = wx.Button(panel2,label="Button 5",pos=(0,250),size=(50,50))
    button6 = wx.Button(panel2,label="Button 6",pos=(0,300), size=(50,50))
    button7 = wx.Button(panel2,label="Button 7",pos=(0,350), size=(50,50))
    button8 = wx.Button(panel2,label="Button 8",pos=(0,400), size=(50,50))



    bSizer = wx.BoxSizer( wx.VERTICAL )
    bSizer.Add( button1, 0, wx.ALL, 5 )
    bSizer.Add( button2, 0, wx.ALL, 5 )
    bSizer.Add( button3, 0, wx.ALL, 5 )
    bSizer.Add( button4, 0, wx.ALL, 5 )
    bSizer.Add( button5, 0, wx.ALL, 5 )
    bSizer.Add( button6, 0, wx.ALL, 5 )
    bSizer.Add( button7, 0, wx.ALL, 5 )
    bSizer.Add( button8, 0, wx.ALL, 5 )
    panel2.SetSizer( bSizer )




if __name__=='__main__':
    app = wx.App()
    frame = GUI(parent=None, id=-1, title="Test")
    frame.Show()
    app.MainLoop()