NEW Window capability - Disappear / Reappear
This commit is contained in:
parent
592e60083d
commit
5fb1e31efa
|
@ -2677,6 +2677,11 @@ class Window:
|
||||||
def UnHide(self):
|
def UnHide(self):
|
||||||
self.TKroot.deiconify()
|
self.TKroot.deiconify()
|
||||||
|
|
||||||
|
def Disapper(self):
|
||||||
|
self.TKroot.attributes('-alpha', 0)
|
||||||
|
|
||||||
|
def Reappear(self):
|
||||||
|
self.TKroot.attributes('-alpha', 255)
|
||||||
|
|
||||||
def __enter__(self):
|
def __enter__(self):
|
||||||
return self
|
return self
|
||||||
|
|
Loading…
Reference in New Issue