(self, showWnd=True)
| 1487 | lastwnd.Raise() |
| 1488 | |
| 1489 | def Show(self, showWnd=True): |
| 1490 | if showWnd: |
| 1491 | super().Show(showWnd) |
| 1492 | self.RaiseParent() |
| 1493 | self.direction = 1 |
| 1494 | self.timer.Start(10) |
| 1495 | else: |
| 1496 | self.direction = -1 |
| 1497 | self.timer.Start(10) |
| 1498 | |
| 1499 | def OnWindowEraseBk(self, event): |
| 1500 | pass |
no test coverage detected