“Faça uma janela pop -up em Python” Respostas de código

janela pop -up python tknter

import tkinter as tk

def popupmsg(msg, title):
    root = tk.Tk()
    root.title(title)
    label = ttk.Label(root, text=msg)
    label.pack(side="top", fill="x", pady=10)
    B1 = tk.Button(root, text="Okay", command = root.destroy)
    B1.pack()
    popup.mainloop()
Quantum Tantrum

Faça uma janela pop -up em Python

import tkinter as tk

def popupmsg(msg, title):
    root = tk.Tk()
    root.title(title)
    label = ttk.Label(root, text=msg)
    label.pack(side="top", fill="x", pady=10)
    B1 = tk.Button(root, text="Okay", command = root.destroy)
    B1.pack()
    popup.mainloop()
    
Joyous Jackal

Respostas semelhantes a “Faça uma janela pop -up em Python”

Perguntas semelhantes a “Faça uma janela pop -up em Python”

Mais respostas relacionadas para “Faça uma janela pop -up em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código