所以我一直在使用下面的代碼從effbot教程爲基礎:的Tkinter - 停止PanedWndow調整
from Tkinter import *
m1 = PanedWindow()
m1.pack(fill=BOTH, expand=1)
left = Label(m1, text="left pane")
m1.add(left)
m2 = PanedWindow(m1, orient=VERTICAL)
m1.add(m2)
top = Label(m2, text="top pane")
m2.add(top)
bottom = Label(m2, text="bottom pane")
m2.add(bottom)
mainloop()
我的問題是,我有2兩個窗口小部件;一張圖和一張數據表。在某個操作中,圖形將數據表推向上方,因此無法看到。是否有可能停止內部面板元素干擾其他尺寸?
我仍然想盡可能手動調整大小。
感謝您的回答,我現在已經嘗試過,但不幸的是,這似乎沒有改變。 – Retro