MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / send_to_back

Method send_to_back

PySimpleGUI/PySimpleGUI.py:11778–11787  ·  view source on GitHub ↗

Pushes this window to the bottom of the stack of windows. It is the opposite of BringToFront

(self)

Source from the content-addressed store, hash-verified

11776 pass
11777
11778 def send_to_back(self):
11779 """
11780 Pushes this window to the bottom of the stack of windows. It is the opposite of BringToFront
11781 """
11782 if not self._is_window_created('tried Window.send_to_back'):
11783 return
11784 try:
11785 self.TKroot.lower()
11786 except:
11787 pass
11788
11789 def keep_on_top_set(self):
11790 """

Callers 1

mainFunction · 0.95

Calls 1

_is_window_createdMethod · 0.95

Tested by

no test coverage detected