我想向點擊「x」和「x1」按鈕時打開的窗口添加文本。但我無法弄清楚。如何將文本添加到Toplevel窗口
import tkinter as tk
from tkinter import *
def create_window():
window = tk.Toplevel(root)
root = tk.Tk()
root.geometry("{0}x{1}+0+0".format(root.winfo_screenwidth(), root.winfo_screenheight()))
b = tk.Button(root, text="x", command=create_window)
b.pack(side=TOP, anchor=W, fill=BOTH, expand=YES)
b1 = tk.Button(root, text="x1", command=create_window)
b1.pack(side=TOP, anchor=W, fill=BOTH, expand=YES)
root.mainloop()
使用'Label'小部件。 –
謝謝。你能告訴我一個小例子嗎? –
在互聯網上有數百萬個使用標籤小部件的例子。 –