Hi,
If I have a 'parent' window (wxFrame), and a plugin window.
(parent.py)
class App(wx.App):
wxctrl = xrc.XRCCTRL( self.x_panel, "BUTTON")
wx.EVT_BUTTON(wxctrl, wxctrl.GetId(),
self.OnButton)
How could I send an event from plugin.py that mimics clicking 'Button'?