[Python] Tkinter
gianmaria
glbattistella a tiscali.it
Sab 14 Gen 2017 09:12:48 CET
Ciao ho problemi su window 7
non mi cambia il colore background ma rimane bianco come mai
in un pc dove ho cambiato il tema in window classico funziona ( e che cacchio )
segue l’esempio funzionante
Grazie Gian
import tkinter as tk
from tkinter import ttk
def Pressed():
#print(CasellaTesto.cget('state')) SOLO PER DEBUG
Stato=str(CasellaTesto.cget('state'))
#print(Stato) SOLO PER DEBUG
if Stato=='normal':
CasellaTesto.config(state='readonly')
else:
CasellaTesto.config(state='normal')
Fin = tk.Tk()
ST = ttk.Style()
ST.configure('EntryStyle.TEntry', fieldbackground='yellow')
ST.map('EntryStyle.TEntry',fieldbackground=[('readonly','cyan')])
CasellaTesto = ttk.Entry(Fin, style='EntryStyle.TEntry')
CasellaTesto.grid(column=0, row=0)
But=ttk.Button(Fin,text='modifica',command=Pressed)
But.grid(column=0,row=1)
Fin.mainloop()
---
Questa e-mail è stata controllata per individuare virus con Avast antivirus.
https://www.avast.com/antivirus
-------------- parte successiva --------------
Un allegato HTML è stato rimosso...
URL: <http://lists.python.it/pipermail/python/attachments/20170114/712e9c96/attachment-0001.html>
-------------- parte successiva --------------
Un allegato non testuale è stato rimosso....
Nome: wlEmoticon-sadsmile[1].png
Tipo: image/png
Dimensione: 1090 bytes
Descrizione: non disponibile
URL: <http://lists.python.it/pipermail/python/attachments/20170114/712e9c96/attachment-0001.png>
Maggiori informazioni sulla lista
Python