Tkinter - 在根窗口之上创建新窗口

时间:2017-11-01 01:02:32

标签: python tkinter

如何在主根窗口顶部创建一个新的tkinter根窗口,阻止您在关闭辅助窗口之前访问主窗口?

这是我到目前为止编写的代码(在python 3.6中):

from tkinter import *
root = Tk()
root.geometry('600x400+0+0')

def new_page():
    rootB = Tk()

btnNP = Button(root, padx=1, pady=2, fg='black',relief='raise',font=
('garamond',10, 'italic', 'bold'),
             text='New Page', bg='blue', command=new_page)
btnNP.place(x=100, y=300)

text1 = Text(root, bd=5, height=1, width=14, bg='pink')
text1.place(x=100, y=250)

root.mainloop()

1 个答案:

答案 0 :(得分:1)

我使用Toplevel而不是新根

+

这应该可以解决问题