in wxpython, is there a event that can occur when one of the function of the panel or frame is called? thanks; for example, self.Bind(wx.EVT_Onfunctioncalled, self.OnDoSomething)
Well, I have to changed this question to a more specific one as follows:
I mean, well, the following process: I click on the menu “file” on the main window (as most GUI application looks), then “open”, then a file directory dialog pops up, then I select a file, then I click “okay” on that dialog, then, I want that this file’s name would appear on the listctrl on this main window, displaying which file I had select
Here’s a runnable example that does what you want.