“marco de pitón en un marco” Código de respuesta

marco de pitón en un marco

import Tkinter
tk = Tkinter.Tk()
frame1 = Tkinter.Frame(tk, height = 100, width = 100, bg = "WHITE", borderwidth=2)
frame2 = Tkinter.Frame(frame1, height = 100, width = 100, bg = "RED", borderwidth=2)
frame1.pack()
frame2.pack()
label = Tkinter.Label(frame2, text = "Label") #Receive a callback from button here
label.pack()
button = Tkinter.Button(frame1,text="Button") #Send some action to Label here
button.pack()
tk.mainloop()
Hello There

Fecha y hora con tkinter

w = Label(root, text=f"{dt.datetime.now():%a, %b %d %Y}", fg="white", bg="black", font=("helvetica", 40))
Arrogant Alpaca

Respuestas similares a “marco de pitón en un marco”

Preguntas similares a “marco de pitón en un marco”

Más respuestas relacionadas con “marco de pitón en un marco” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código