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
Thhe whole point of an entry widget in most cases is to retrieve entered text.
So an entry example should show what actually happens if text is entered.
I suggest ADD around line 20
self.entry.connect("activate", self.GotText)
and ADD around line 76
def GotText(self,e):
print ('Got' ,e.get_text())
The text was updated successfully, but these errors were encountered:
Thhe whole point of an entry widget in most cases is to retrieve entered text.
So an entry example should show what actually happens if text is entered.
I suggest ADD around line 20
self.entry.connect("activate", self.GotText)
and ADD around line 76
def GotText(self,e):
print ('Got' ,e.get_text())
The text was updated successfully, but these errors were encountered: