0
我正在學習TK,並用python使用Panedwindow遇到問題。代碼:tk.Panedwindow不可見
import tkinter as tk
import tkinter.ttk as ttk
class Application(tk.Frame):
def __init__(self,master):
#Set top window geomotry
tk.Frame.__init__(self,master)
pane = tk.PanedWindow(self)
pane.pack(fill=tk.BOTH, expand=1)
test=tk.Label(pane,text='test')
test.pack()
root=tk.Tk()
root.geometry("800x600")
app=Application(root)
tk.mainloop()
沒有任何內容出現在根窗口中。