Internal callback function for when a listbox item is selected :param event: Information from tkinter about the callback :type event:
(self, event)
| 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 | """ |
nothing calls this directly
no test coverage detected