Tkinter Toplevel inf 不同 file/function
Tkinter Toplevel inf different file/function
我正在尝试创建一个 Toplevel window,但是,这个 Toplevel 是从函数内同一目录中的不同文件调用的。
抱歉,我绝不是 tkinter 或 python 专家。这是代码的两个部分。 (片段)
#文件 1(主要)
import tkinter as tk
from tkinter import *
import comm1
from comm1 import com1
root = tk.Tk()
root.title("")
root.geometry("1900x1314")
#grid Center && 3x6 configuration for correct gui layout
root.grid_rowconfigure(0, weight=1)
root.grid_rowconfigure(11, weight=1)
root.grid_columnconfigure(0, weight=1)
root.grid_columnconfigure(11, weight=1)
#background image
canvas = Canvas(root, width=1900, height=1314)
canvas.place(x=0, y=0, relwidth=1, relheight=1)
bckground = PhotoImage(file='img.png')
canvas.create_image(20 ,20 ,anchor=NW, image=bckground)
#command to create new Toplevel
btn1 = tk.Button(root, text='Top', command=com1, justify='center', font=("Arial", 10))
btn1.config(anchor=CENTER)
btn1.grid(row=4, column=1)
#文件 2(顶层)
#command for new window
def com1():
newWindow1 = Toplevel(root)
newWindow1.title("")
newWindow1.geometry("500x500")
entry1 = tk.Entry(root, justify='center' , font=("Arial", 12), fg="Grey")
newWindow1.pack()
newWindow1.mainloop()
奇怪的是,它完美地工作了几分钟,没有更改任何代码,它就停止工作了。
我哪里错了?
您需要将 root
作为参数传递给 com1
此外,您只需要启动 mainloop
一次,它应该在主文件中。您不需要每次创建新的 window.
时都调用它
感谢所有回答的人,
决定通过在单个文件中更好地构建来绕过这个问题。 :)
我正在尝试创建一个 Toplevel window,但是,这个 Toplevel 是从函数内同一目录中的不同文件调用的。
抱歉,我绝不是 tkinter 或 python 专家。这是代码的两个部分。 (片段)
#文件 1(主要)
import tkinter as tk
from tkinter import *
import comm1
from comm1 import com1
root = tk.Tk()
root.title("")
root.geometry("1900x1314")
#grid Center && 3x6 configuration for correct gui layout
root.grid_rowconfigure(0, weight=1)
root.grid_rowconfigure(11, weight=1)
root.grid_columnconfigure(0, weight=1)
root.grid_columnconfigure(11, weight=1)
#background image
canvas = Canvas(root, width=1900, height=1314)
canvas.place(x=0, y=0, relwidth=1, relheight=1)
bckground = PhotoImage(file='img.png')
canvas.create_image(20 ,20 ,anchor=NW, image=bckground)
#command to create new Toplevel
btn1 = tk.Button(root, text='Top', command=com1, justify='center', font=("Arial", 10))
btn1.config(anchor=CENTER)
btn1.grid(row=4, column=1)
#文件 2(顶层)
#command for new window
def com1():
newWindow1 = Toplevel(root)
newWindow1.title("")
newWindow1.geometry("500x500")
entry1 = tk.Entry(root, justify='center' , font=("Arial", 12), fg="Grey")
newWindow1.pack()
newWindow1.mainloop()
奇怪的是,它完美地工作了几分钟,没有更改任何代码,它就停止工作了。 我哪里错了?
您需要将 root
作为参数传递给 com1
此外,您只需要启动 mainloop
一次,它应该在主文件中。您不需要每次创建新的 window.
感谢所有回答的人, 决定通过在单个文件中更好地构建来绕过这个问题。 :)