Cambio de color al ser presionado tkinter
Publicado por Antonio_RC (1 intervención) el 26/10/2022 17:35:15
1
2
3
4
5
6
but1 = Button(root, bg='#EEEEEE', activebackground='#DC3838',command=lambda:[presion(0)])
but1.place(x=235, y=120, width=23, height=30)
but1.config(bd=0)
but2 = Button(root, bg='#EEEEEE', command=lambda:presion(1))
but2.place(x=235, y=182, width=23, height=30)
but2.config(bd=0)
Valora esta pregunta


0