我一直在试验放置在根窗口中的框架。据我所知,堆叠顺序是在创建框架时确定的,
首先创建的文件在后面创建的文件下面。 .place的顺序
似乎没有任何作用。
有什么方法可以改变堆叠顺序?
最佳答案
您可能正在寻找:
widget.lift() # move to the top of the stack
widget.lift(another) # move to just above another widget
widget.lower() # move to the bottom of the stack
widget.lower(another) # move to just below another widget
解释here。 (这是我能找到的最佳文档。如果您阅读effbot,它的读法类似于
lift
和lower
仅适用于Windows,但实际上它们也可以与其他小部件一起使用。)关于python - Tkinter:是否可以更改已放置框架的堆叠顺序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35690249/