Python / Tkinter grid_rowconfigure 版本之间的问题

Python / Tkinter grid_rowconfigure issue between versions

在处理一些样本时,我在 Python 3.9.
中遇到了奇怪的行为 grid_rowconfigure 没有像我期望的那样展开行。

不幸的是,在 Python3.9.2 或 Tk8.6 中寻找已经报告的错误无济于事。
请在下面找到复制代码。

#!/usr/bin/python
"""
Code Stripped for Whosebug.
"""
from sys import hexversion
if hexversion < 0x03000000:
    # pylint: disable=import-error
    # if we are in 0x02whaterver that works
    import Tkinter as tk
    import ttk
else:
    import tkinter as tk
    from tkinter import ttk

class ScrolledTree(ttk.Frame):
    """ A Scrolled Treeview
    """
    def __init__(self, *args, **kwargs):
        # pylint: disable=unused-argument
        if hexversion < 0x03000000:
            ttk.Frame.__init__(self, *args, **kwargs)
        else:
            super().__init__()
        self.grid_rowconfigure(0, weight=1)
        self.grid_columnconfigure(0, weight=1)

        self.tree = ttk.Treeview(self)

        self.tree.grid(row=0, column=0, sticky=tk.NW+tk.SE)

        ttk.Style().configure("TFrame", background="red")
        ttk.Style().configure("ScrolledTree.TFrame", background="blue")

class ScrolledFilterTree(ttk.Frame):
    """ A Scrolled Tree with Filters
    """
    def __init__(self, *args, **kwargs):
        # pylint: disable=unused-argument
        if hexversion < 0x03000000:
            ttk.Frame.__init__(self, *args, **kwargs)
        else:
            super().__init__()
        ttk.Label(self, text="asdf").grid(row=0, column=0)
        self.tree = ScrolledTree(self)
        self.tree.grid(row=1, column=0, sticky=tk.NW+tk.SE)
        self.grid_rowconfigure(1, weight=1)
        self.grid_columnconfigure(0, weight=1)

        ttk.Style().configure("TFrame", background="red")
        ttk.Style().configure("ScrolledTree.TFrame", background="blue")

def test_show():

    root = tk.Tk()
    root.grid_rowconfigure(0, weight=1)
    root.grid_columnconfigure(0, weight=1)
    root.title("Show - ScrolledTree")
    app = ScrolledTree(root)
    app.grid(row=0, column=0, sticky=tk.NW+tk.SE)
    root.mainloop()

    root = tk.Tk()
    root.grid_rowconfigure(0, weight=1)
    root.grid_columnconfigure(0, weight=1)
    root.title("Show - ScrolledFilterTree")
    app = ScrolledFilterTree(root)
    app.grid(row=0, column=0, sticky=tk.NW+tk.SE)
    root.mainloop()
#end test_show

if __name__ == "__main__":
    test_show()

什么看起来很奇怪?

左边

ScrolledText classes(Python2.7/Tk8.5)(Python3.9/Tk8.6)右边都可以。
ScrolledFilteredText 中使用它们会导致:

有什么解释为什么这些看起来不同吗? 或者 - 更准确地说 - 在重新缩放根 window?

时表现不同

更新 1

OS: Windows 10 20H2 ( 19042.985 ) x64
Python: 2.7.16 x64(v2.7.16:413a49145e,2019 年 3 月 4 日,01:37:19)
Python: 3.9.2 x64(tags/v3.9.2:1a79785,2021 年 2 月 19 日,13:44:55)
Tk/Tcl: 来自 python 发行版的库存版本。

非常感谢任何帮助。

因为你没有把*args**kwargs传递给super().__init__(),也就是没有传递parent参数,所以ScrolledTree会被放在根window 而不是 Python 中的 ScrolledFilterTree 帧 3.

*args**kwargs 添加回 super().__init__() 将解决问题。