def showPreferenceDialog(self, event): dlg = PreferenceDialog(self) dlg.ShowModal() dlg.Destroy()
def OnShowPreferenceDialog(self, event): with PreferenceDialog(self) as dlg: dlg.ShowModal()