是否可以调整宽度wx.StaticBox?

Is it possible to adapt width wx.StaticBox?

我编写了这个代码:

import wx
import List as li
from ChoiceBook import *

class MainTab(wx.Panel):
   def __init__(self, parent, sb, dm):
    wx.Panel.__init__(self, parent)
    self.parent = parent
    self.hardware = []
    box = wx.StaticBox(self, wx.ID_ANY, "Appareil")
    self.list = li.List(self, sb, dm)
    sizerleft = wx.StaticBoxSizer(box,wx.HORIZONTAL)
    sizerleft.Add(self.list, 1, wx.ALL|wx.EXPAND, 5)




    box = wx.StaticBox(self, wx.ID_ANY, "Mesures")
    self.notebook = Choicebook(self,dm)

    sizerright = wx.StaticBoxSizer(box,wx.HORIZONTAL)
    sizerright.Add(self.notebook, 1, wx.ALL|wx.EXPAND, 5)



    sizer = wx.BoxSizer(wx.HORIZONTAL)
    sizer.Add(sizerleft, 1, wx.ALL|wx.EXPAND, 5)
    sizer.Add(sizerright, 1, wx.ALL|wx.EXPAND, 5)
    self.SetSizer(sizer)

   def update(self):
       self.notebook.update() 

它成就了这个 window, but when i resize it, it dosen't scale the contents. it just crop it, like this。

我认为问题出在我猜是静态的 StaticBox(我不确定)。

我想知道是否可以让它自动调整大小?

或者,如果没有,是否有另一种方法可以制作一个带有像 StaticBox 这样的标题的框,并使其可调整大小?

编辑:我在你的帮助下弄明白了。事实上,这不是 cod 错误的这一部分,而是我的列表 Class。我只是删除该文件中的所有大小 之前

wx.ListCtrl.__init__(self,
                         parent,
                         size=(800, -1),
                         style=wx.LC_REPORT | wx.LC_SINGLE_SEL)
    self.rm = RM.Res_Man()
    self.index = 0

    self.InsertColumn(0, 'Appareil de mesure', width=125)
    self.InsertColumn(1, 'Connecté')
    self.InsertColumn(2, 'ID',width=300)
    self.InsertColumn(3, 'Type',width=290)
    self.sb = sb

之后

wx.ListCtrl.__init__(self,
                         parent,
                         style=wx.LC_REPORT | wx.LC_SINGLE_SEL)
    self.rm = RM.Res_Man()
    self.index = 0

    self.InsertColumn(0, 'Appareil de mesure')
    self.InsertColumn(1, 'Connecté')
    self.InsertColumn(2, 'ID')
    self.InsertColumn(3, 'Type')
    self.sb = sb

谢谢大家 ;)

我认为你想要的是在 RESIZE 事件中强制它 Layout()
但是,请记住这些项目将有最小尺寸。

试试这个:

import wx

class MainTab(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, None)
        self.hardware = []
        box = wx.StaticBox(self, wx.ID_ANY, "Appareil")
        lc = wx.ListCtrl(self, wx.ID_ANY, style=wx.LC_REPORT|wx.LC_SINGLE_SEL|wx.LC_VRULES)
        lc.InsertColumn(1, "Appareil de mesure")
        lc.InsertColumn(2, "Connecte")
        lc.InsertColumn(3, "ID")
        lc.InsertColumn(4, "Type")
        sizerleft = wx.StaticBoxSizer(box,wx.HORIZONTAL)
        sizerleft.Add(lc, 1, wx.ALL|wx.EXPAND, 5)

        box = wx.StaticBox(self, wx.ID_ANY, "Mesures")
        cb = wx.Choicebook(self, wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize,
               style=0, name="")

        sizerright = wx.StaticBoxSizer(box,wx.HORIZONTAL)
        sizerright.Add(cb, 1, wx.ALL|wx.EXPAND, 5)

        sizer = wx.BoxSizer(wx.HORIZONTAL)
        sizer.Add(sizerleft, 1, wx.ALL|wx.EXPAND, 5)
        sizer.Add(sizerright, 1, wx.ALL|wx.EXPAND, 5)
        self.SetSizer(sizer)
        self.Bind(wx.EVT_SIZE, self.ReSize)

    def ReSize(self,event):
        self.Layout()

if __name__ == '__main__':
    app = wx.App()
    frame = MainTab()
    frame.Show(True)
    app.MainLoop()

你的代码很完整,我不得不把它拼凑起来。