Tkinter:将小部件放置在框架中实际上将其放置在根目录中

Tkinter: Placing a widget in a frame actually places it in root

所以我在 Windows (python 3.8.5) 和 Linux (python 3.8.2) 上出现了一个独特的问题。当我将一个小部件放置在某个框架中时,它实际上放置在根目录中而不是出于任何原因。

我正在使用 TkinterExtensions library. I've looked at this 但它没有帮助。无论我做什么,我都会遇到问题,但仅限于一帧。我现在怀疑它可能是 Tkinter 库错误。

编辑:它似乎只发生在python 3.8.x。我在另一台装有 3.7.x 的电脑上试过它,它按预期工作。

下面是一个非常通用的示例。

from TkinterExtensions import *

class Root(tk.Tk):
    # sets up Tkinter and creates the other windows and places them accordingly.
    def __init__(self):
        super().__init__()
        self.w1 = Window1(root=self).place(relx=0.0, rely=0.0, relheight=1.0, relwidth=1.0)
        self.w2 = Window2(root=self).place(relx=0.0, rely=0.0, relheight=1.0, relwidth=1.0)
        self.w3 = Window3(root=self).place(relx=0.0, rely=0.0, relheight=1.0, relwidth=1.0)
        
        self.w1.hide()
        self.w2.hide()
        self.w3.hide()

class Window1(TkinterFrame):
    # ... anything needed for this frame
    # This is the frame that's causing the issue.
    # Despite the same code on all three windows, 
    # this one puts any widgets into root instead of as a child of this frame.
    
    def __init__(self, root)
        super().__init__(root)
        self.button = TkinterButton(master=self, Text="button").place(relx=0.0, rely=0.0, relheight=1.0, relwidth=1.0)
    
class Window2(TkinterFrame):
    # ... anything needed for this frame
    # this frame works fine
    
class Window3(TkinterFrame):
    # ... anything needed for this frame
    # this frame works fine
    

如果需要,我可以创建一个存储库,其中包含更广泛的通用代码。

此外,我是 TkinterExtensions 库的作者。

在这个特定的框架中,我定义了 len 方法。一旦重命名,布局管理器和放置在其中的任何小部件都会按预期工作。 Tkinter.Frame class 没有定义 len 所以我不知道为什么它会导致问题,但确实如此。