0

我正在尝试运行一个打开几个画布窗口的 Python 代码,但我不知道该怎么做......只打开一个窗口看起来像我下面的代码......如果我想放为了打开几个独立的窗口,这个代码在 for cicle 中......我该怎么做?

谢谢你的帮助

 from tkinter import *
 root = Tk()
 root.title("First Graph")
 root.resizable(0,0)
 points = []

 f1 = Canvas(root, bg="white", width=300, height= 300)

 f1.bind("<Motion>", callback)
 f1.configure(cursor="crosshair")
 f1.pack()

 f1.bind("<Button-1>", point)
 f1.bind("<Button-3>", graph)

 root.mainloop()
4

1 回答 1

1

为您想要的每个独立窗口创建一个 Toplevel 实例。然后,您可以将画布或其他任何东西放在顶层,就像您可以为根窗口一样。

于 2013-09-20T21:30:05.533 回答