Phoenix: drap and drop

Has anyone tried drag and drop on Phoenix build and get it work?

I tested both wx.TextDropTarget and wx.FileDropTarget as the same way as wxpython demo does. But, instead of calling TextDropTarget.OnDropText() or FileDropTarget.OnDropFiles(), an exception is thrown as follows:

NotImplementedError: TextDropTarget.OnData() is abstract and must be overridden
NotImplementedError: FileDropTarget.OnData() is abstract and must be overridden

I’m using wxPython-Phoenix-r73732-win32-py2.7.tar.gz on Win7. When I switch back to classic build, my code runs fine.

Angel wrote:

Has anyone tried drag and drop on Phoenix build and get it work?

I tested both wx.TextDropTarget and wx.FileDropTarget as the same way as
wxpython demo does. But, instead of calling TextDropTarget.OnDropText()
or FileDropTarget.OnDropFiles(), an exception is thrown as follows:

NotImplementedError: TextDropTarget.OnData() is abstract and must be
overridden
NotImplementedError: FileDropTarget.OnData() is abstract and must be
overridden

I'm using wxPython-Phoenix-r73732-win32-py2.7.tar.gz on Win7. When I
switch back to classic build, my code runs fine.

Try again with the next snapshot build.

···

--
Robin Dunn
Software Craftsman

I tried wxPython_Phoenix-2.9.5.81-r73761-win32-py2.7.tar.gz and this issue was fixed. Thanks!