NEW Window capability - Disappear / Reappear

This commit is contained in:
MikeTheWatchGuy 2018-10-09 08:39:46 -04:00
parent 592e60083d
commit 5fb1e31efa

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