NEW Window capability - Disappear / Reappear

This commit is contained in:
MikeTheWatchGuy 2018-10-09 08:39:46 -04:00
parent 592e60083d
commit 5fb1e31efa
1 changed files with 5 additions and 0 deletions

View File

@ -2677,6 +2677,11 @@ class Window:
def UnHide(self):
self.TKroot.deiconify()
def Disapper(self):
self.TKroot.attributes('-alpha', 0)
def Reappear(self):
self.TKroot.attributes('-alpha', 255)
def __enter__(self):
return self