我正在尝试显示ssh连接所需的连接设置,我正在使用wx.BoxSizer来安排布局,不幸的是,该布局无法正常工作,并将所有元素堆叠在左上角(直到我通过缩放/最大化来调整窗口大小为止。)
我已经尝试使用:self.Update(),self.Refresh()和self.Layout() 在我调用self.Show(True)方法之后,但这对我不起作用。 如果我删除“状态栏设置”和“创建菜单栏”部分,则可以,但是我需要这些。
import wx
import connectionSettingsProperties
import connectionSettings
from pubsub import pub
class MyFrame(wx.Frame):
def __init__(self,parent,title):
wx.Frame.__init__(self, parent, title = title, size = (1600,800))
panel = wx.Panel(self)
#statusbar setup
self.CreateStatusBar()
# menu setup
filemenu = wx.Menu()
# creating the menubar
menuBar = wx.MenuBar()
menuBar.Append(filemenu,"Menu")
self.SetMenuBar(menuBar)
#connectionstatus init
self.ipLabel = wx.StaticText(panel, label = 'ip:')
self.usernameLabel = wx.StaticText(panel, label = 'username:')
#building layout
vboxMain = wx.BoxSizer(wx.VERTICAL)
hboxConnection = wx.BoxSizer(wx.HORIZONTAL)
hboxConnection.Add(self.ipLabel)
hboxConnection.Add(self.usernameLabel)
vboxMain.Add(hboxConnection)
panel.SetSizer(vboxMain)
#show content
self.Show(True)
app = wx.App(False)
frame = MyFrame(None, 'MyApp')
app.MainLoop()
这是最初显示的内容:https://imgur.com/VQebA9t 它应该是这样的:https://imgur.com/60V1tcF 第二个结果是在我重新缩放窗口后立即显示。
答案 0 :(得分:0)
您真的很亲近。您只应添加以下行:
vboxMain.Fit(panel)
在行下面:
panel.SetSizer(vboxMain)