(self)
| 1478 | self.SetTransparent(self.transp) |
| 1479 | |
| 1480 | def RaiseParent(self): |
| 1481 | wnd = self |
| 1482 | lastwnd = None |
| 1483 | while wnd is not None: |
| 1484 | lastwnd = wnd |
| 1485 | wnd = wnd.Parent |
| 1486 | if lastwnd: |
| 1487 | lastwnd.Raise() |
| 1488 | |
| 1489 | def Show(self, showWnd=True): |
| 1490 | if showWnd: |