我向BoxSizer添加了一些按钮。
这就是我想要的:
这就是我要做的:
这是第二个盒子的代码:
self.approveItem = wx.Button(self.panel_1, -1, "Approve Item")
self.changeQty = wx.Button(self.panel_1, -1, "Change Qty")
sizer_2 = wx.BoxSizer(wx.HORIZONTAL)
sizer_2.Add(self.approveItem, 0, wx.ALIGN_RIGHT | wx.RIGHT, 0)
sizer_2.Add(self.changeQty, 0, wx.ALIGN_RIGHT| wx.RIGHT, 0)
self.sizer_item_staticbox = wx.StaticBox(self, -1, "")
sizer_item = wx.StaticBoxSizer(self.sizer_item_staticbox, wx.HORIZONTAL)
sizer_item.SetMinSize((600,-1))
sizer_item.Add(sizer_2, 0, wx.EXPAND, 0)
我如何解决它?
最佳答案
有很多方法可以实现所需的功能,包括使用flexgridsizer,grisizer和普通的水平和垂直boxsizer,这是gridsizer的示例。
我将其做成5列宽,以便您可以根据需要在左侧插入额外的按钮。
参见:http://wxpython.org/Phoenix/docs/html/GridSizer.html
#!/usr/bin/env python
import wx
class MyFrame(wx.Frame):
def __init__(self, parent, ID, title):
wx.Frame.__init__(self, parent, ID, title, wx.DefaultPosition)
Buttons = []
Buttons.append(wx.Button(self,-1, "Approve Location"))
Buttons.append(wx.Button(self,-1, "Approve Item"))
Buttons.append(wx.Button(self,-1, "Change Qty"))
Buttons.append(wx.Button(self,-1, "Approve"))
sizer = wx.GridBagSizer(5,3)
sizer.Add(Buttons[0], (0, 5), (1,1), wx.EXPAND)
sizer.Add(Buttons[1], (1, 4), (1,1), wx.EXPAND)
sizer.Add(Buttons[2], (1, 5), (1,1), wx.EXPAND)
sizer.Add(Buttons[3], (2, 5), (1,1), wx.EXPAND)
self.SetSizerAndFit(sizer)
self.Centre()
class MyApp(wx.App):
def OnInit(self):
frame = MyFrame(None, -1, "Gridbagsizer")
frame.Show(True)
self.SetTopWindow(frame)
return True
if __name__ == "__main__":
app = MyApp(0)
app.MainLoop()
关于python - wxpython中对象的对齐,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33649980/