Direct input focus to this widget even if the application does not have the focus. Use with caution!
(self)
| 788 | focus = focus_set # XXX b/w compat? |
| 789 | |
| 790 | def focus_force(self): |
| 791 | """Direct input focus to this widget even if the |
| 792 | application does not have the focus. Use with |
| 793 | caution!""" |
| 794 | self.tk.call('focus', '-force', self._w) |
| 795 | |
| 796 | def focus_get(self): |
| 797 | """Return the widget which has currently the focus in the |