You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StackOverflowa: [CTRL + a select all in entry widget tkinter python](http://stackoverflow.com/questions/41477428/ctrl-a-select-all-in-entry-widget-tkinter-python/41478726#41478726)
3
+
4
+
Selecting text in `Entry` using `Ctrl+A` as in other programs - it highlights text so it can be coped into cliboard.
5
+
6
+
# example-1.py
7
+
8
+
Because after releasing keys `<Control-a>` selection is removed
9
+
so I use `after()` to execute selection after 50ms.
10
+
It selects all text (but it moves cursor to the beginning)
11
+
and moves cursor to the end.
12
+
13
+
# example-2.py
14
+
15
+
Before I couldn't find correct combination with `Release`
0 commit comments