Withdraw this widget from the screen such that it is unmapped and forgotten by the window manager. Re-draw it with wm_deiconify.
(self)
| 2424 | transient = wm_transient |
| 2425 | |
| 2426 | def wm_withdraw(self): |
| 2427 | """Withdraw this widget from the screen such that it is unmapped |
| 2428 | and forgotten by the window manager. Re-draw it with wm_deiconify.""" |
| 2429 | return self.tk.call('wm', 'withdraw', self._w) |
| 2430 | |
| 2431 | withdraw = wm_withdraw |
| 2432 |