Question

Is there any way to make the Tkinter Entry widget so that text can be highlighted and copied, but not changed?

Was it helpful?

Solution

Use the state option "readonly":

state= The entry state: NORMAL, DISABLED, or “readonly” (same as DISABLED, but contents can still be selected and copied). Default is NORMAL. Note that if you set this to DISABLED or “readonly”, calls to insert and delete are ignored. (state/State)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top