“cadre python dans un cadre” Réponses codées

cadre python dans un cadre

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

date et heure à l'aide de tkinter

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

Réponses similaires à “cadre python dans un cadre”

Questions similaires à “cadre python dans un cadre”

Plus de réponses similaires à “cadre python dans un cadre” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code