You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
252 B

  1. import wx
  2. class FileDrop(wx.FileDropTarget):
  3. def __init__(self, window):
  4. wx.FileDropTarget.__init__(self)
  5. self.window = window
  6. def OnDropFiles(self, x, y, filenames):
  7. for name in filenames:
  8. self.window.WriteText(name)