(self, showWnd=True)
| 39 | self.SetTransparent(self.transp) |
| 40 | |
| 41 | def Show(self, showWnd=True): |
| 42 | if showWnd: |
| 43 | super().Show(showWnd) |
| 44 | self.Parent.SetFocus() |
| 45 | self.direction = 1 |
| 46 | self.timer.Start(5) |
| 47 | else: |
| 48 | self.direction = -1 |
| 49 | self.timer.Start(5) |
| 50 | |
| 51 | def OnWindowEraseBk(self, event): |
| 52 | pass |