2

在重构会话期间,我将很多 gui 代码放入了直接将数据插入 wx.Sizer 对象的小函数中。

例如,这个小功能:

def buildStatusDisplay(self, status_disp, flag):
    grid = wx.FlexGridSizer(cols=1, hgap=5, vgap=0)
    font = wx.Font(8, wx.DEFAULT, wx.NORMAL, wx.LIGHT, False, 'Segoe UI')
    for option in status_disp:
        left = wx.StaticText(self, -1, option)
        left.SetFont(font)
        grid.Add(left, 0, flag=flag)
    return grid

因此,它使用一次性创建所有 StaticText 对象left,然后返回FlexGrid. 但是,我需要根据用户输入更新 StaticText 对象中的一些标签,但是,我不确定如何访问它们。

我已经遍历了从函数返回的 sizer,但是我没有看到任何与可以让我引用组成 sizer 的对象的方式相关的东西。

for i in dir(sizer):
    print i 

>>Add
>>AddF
>>AddGrowableCol
>>AddGrowableRow
>>AddItem
>>AddMany
>>AddSizer
>>AddSpacer
>>AddStretchSpacer
>>AddWindow
>>CalcMin
>>CalcRowsCols
>>Children
>>ClassName
>>Clear
>>ColWidths
>>Cols
>>ComputeFittingCli
>>ComputeFittingWin
>>ContainingWindow
>>DeleteWindows
>>Destroy
>>Detach
>>Fit
>>FitInside
>>FlexibleDirection
>>GetChildren
>>GetClassName
>>GetColWidths
>>GetCols
>>GetContainingWind
>>GetFlexibleDirect
>>GetHGap
>>GetItem
>>GetItemIndex
>>GetMinSize
>>GetMinSizeTuple
>>GetNonFlexibleGro
>>GetPosition
>>GetPositionTuple
>>GetRowHeights
>>GetRows
>>GetSize
>>GetSizeTuple
>>GetVGap
>>HGap
>>Hide
>>Insert
>>InsertF
>>InsertItem
>>InsertSizer
>>InsertSpacer
>>InsertStretchSpac
>>InsertWindow
>>IsSameAs
>>IsShown
>>Layout
>>MinSize
>>NonFlexibleGrowMo
>>Position
>>Prepend
>>PrependF
>>PrependItem
>>PrependSizer
>>PrependSpacer
>>PrependStretchSpa
>>PrependWindow
>>RecalcSizes
>>Remove
>>RemoveGrowableCol
>>RemoveGrowableRow
>>RemovePos
>>RemoveSizer
>>RemoveWindow
>>Replace
>>RowHeights
>>Rows
>>SetCols
>>SetContainingWind
>>SetDimension
>>SetFlexibleDirect
>>SetHGap
>>SetItemMinSize
>>SetMinSize
>>SetNonFlexibleGro
>>SetRows
>>SetSizeHints
>>SetVGap
>>SetVirtualSizeHin
>>Show
>>ShowItems
>>Size
>>VGap
>>_ReplaceItem
>>_ReplaceSizer
>>_ReplaceWin
>>_SetItemMinSize
>>__class__
>>__del__
>>__delattr__
>>__dict__
>>__doc__
>>__format__
>>__getattribute__
>>__hash__
>>__init__
>>__module__
>>__new__
>>__reduce__
>>__reduce_ex__
>>__repr__
>>__setattr__
>>__sizeof__
>>__str__
>>__subclasshook__
>>__swig_destroy__
>>__weakref__
>>_setOORInfo

GetChildren()仅返回SizerItems似乎也不包含对基础对象的任何引用。

任何人都知道如何访问sizer内部的东西?我想我可以稍微扩展一下函数,然后返回对象列表以及大小调整器,或者简单地转储函数并将标识符保留给我需要在 main 中修改的对象……但是……我的 gui 代码已经够意大利面了。如果我能避免它,我愿意。

4

3 回答 3

2

在 上wx.SizerItem,有一个GetWindow正是它给你的。用于IsWindow检查是否有可用的“窗口”。所有底层对象都继承自wx.Window,这就是您想要的。

这是一个例子,obj是一个wx.Frame对象:

>>> obj
<main.views.Main; proxy of <Swig Object of type 'wxFrame *' at 0x7fbaa1c70820> >
>>> obj.Sizer
<wx._core.BoxSizer; proxy of <Swig Object of type 'wxBoxSizer *' at 0x7fba9c9d48d0> >
>>> obj.Sizer.Children
wxSizerItemList: [<wx._core.SizerItem; proxy of <Swig Object of type 'wxSizerItem *' at 0x7fbaa1c21630> >, <wx._core.SizerItem; proxy of <Swig Object of type 'wxSizerItem *' at 0x7fbaa1c7faf0> >]
>>> obj.Sizer.Children[0]
<wx._core.SizerItem; proxy of <Swig Object of type 'wxSizerItem *' at 0x7fbaa1c21630> >
>>> obj.Sizer.Children[0].Window
<wx._windows.Panel; proxy of <Swig Object of type 'wxPanel *' at 0x7fba9c9d4d10> >
于 2013-01-16T20:05:31.590 回答
1

几个月前我实际上回答了这样的问题:wxPython: How to get sizer from wx.StaticText?

基本上,您只需要执行以下操作:

children = self.sizer.GetChildren()

for child in children:
    widget = child.GetWindow()
    print widget
    if isinstance(widget, wx.TextCtrl):
        widget.Clear()

在这种情况下,您可以看到我只是在检查 wx.TextCtrl,但您可以检查您喜欢的任何小部件。我还在我的博客上写了一篇关于这个主题的文章。

于 2013-01-16T22:56:09.330 回答
1

可能已经在其他一些地方引用过,但找不到它所以放在这里......

在子创建期间使用name参数还有另一种方法,即:

left = wx.StaticText(self, -1, option, name='StaticTextChild')

然后可以直接引用/更改子项,而无需 Sizer 引用。

staticTextChild = wx.FindWindowByName('StaticTextChild')
staticTextChild.SetLabel('new label:')

此方法在此示例中可能无法直接使用,因为您需要确保唯一的子名称才能访问它们。你会怎么做取决于你。

于 2020-04-12T12:11:26.737 回答