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

Method _ListboxSelectHandler

PySimpleGUI/PySimpleGUI.py:1332–1340  ·  view source on GitHub ↗

Internal callback function for when a listbox item is selected :param event: Information from tkinter about the callback :type event:

(self, event)

Source from the content-addressed store, hash-verified

1330 # self.ParentForm.TKroot.quit() # kick the users out of the mainloop
1331
1332 def _ListboxSelectHandler(self, event):
1333 """
1334 Internal callback function for when a listbox item is selected
1335
1336 :param event: Information from tkinter about the callback
1337 :type event:
1338
1339 """
1340 self._generic_callback_handler('')
1341
1342 def _ComboboxSelectHandler(self, event):
1343 """

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected