Set focus for Button

This commit is contained in:
MikeTheWatchGuy 2018-12-04 21:29:41 -05:00
parent 345aabc824
commit 180be467a4
1 changed files with 8 additions and 0 deletions

View File

@ -1506,6 +1506,14 @@ class Button(Element):
def GetText(self):
return self.ButtonText
def SetFocus(self):
try:
self.TKButton.focus_set()
except:
pass
def __del__(self):
try:
self.TKButton.__del__()