“Block Window se outra janela estiver aberta” Respostas de código

Block Window se outra janela estiver aberta

b.grab_set() # when you show the popup
# do stuff ...
b.grab_release() # to return to normal
Odd Oryx

Block Window se outra janela estiver aberta

You can also do this with an if statement:

    if wind1 is not None and win1.winfo_exists():
        pass

    else:
        wind1 = tk.Tk()
        wind1.title('Window 1')

        w1button1 = ttk.Button(wind1,text='Launch Window 2', command=startwind2)
        w1button1.pack()

        w1button2 = ttk.Button(wind1,text='Check if Window 2 exists',command=checkwind2)
        w1button2.pack()

        wind1.mainloop()
Annoyed Ant

Respostas semelhantes a “Block Window se outra janela estiver aberta”

Perguntas semelhantes a “Block Window se outra janela estiver aberta”

Mais respostas relacionadas para “Block Window se outra janela estiver aberta” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código