May-11-2020, 07:09 PM
Is there a way to disable an entry field and yet still see the value in it? For Tkinter.
Disable entry field and still see value
|
May-11-2020, 07:09 PM
Is there a way to disable an entry field and yet still see the value in it? For Tkinter.
May-11-2020, 07:27 PM
Haven't tested it. But what a search turned up.
https://stackoverflow.com/questions/1987...able-entry
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Scripts CookBook - Shmup - PyQt5 Music Player
May-11-2020, 07:37 PM
Yeh. I know how to disable the entry but when it's disabled, I still need to see the value in the entry field.
May-11-2020, 07:51 PM
This works
import tkinter as tk root = tk.Tk() en = tk.Entry(root) en.insert(0, 'some text here') en.configure(state=tk.DISABLED) en.pack() root.mainloop()
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Scripts CookBook - Shmup - PyQt5 Music Player
May-11-2020, 07:57 PM
That worked. Thank you!
On a side note you can change the foreground and background colors in the configure
en.configure(state='tk.DISABLED', disabledbackground='white', disabledforeground='red')
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Scripts CookBook - Shmup - PyQt5 Music Player |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
[Tkinter] binding versus disable | DPaul | 6 | 4,621 |
May-05-2021, 05:17 PM Last Post: DPaul |
|
How to disable custom button | Sancho_Pansa | 7 | 2,299 |
Dec-04-2020, 02:21 PM Last Post: buran |
|
Converting Entry field value to integer in tkinter | scratchmyhead | 2 | 4,104 |
May-11-2020, 03:41 PM Last Post: scratchmyhead |
|
[Tkinter] Unable to get current contents of the entry field where the content is the file path | pmpinaki | 1 | 1,779 |
Apr-18-2020, 06:45 PM Last Post: deanhystad |
|
Transfer Toplevel window entry to root window entry with TKinter | HBH | 0 | 3,829 |
Jan-23-2020, 09:00 PM Last Post: HBH |
|
[Tkinter] how to get the entry information using Entry.get() ? | SamyPyth | 2 | 2,954 |
Mar-18-2019, 05:36 PM Last Post: woooee |