• 大小: 3.67KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-24
  • 语言: Java
  • 标签: 文件  拖拽  选择  py  python  

资源简介


资源截图

代码片段和文件信息

import wx

########################################################################
class MyFileDropTarget(wx.FileDropTarget):
    ““““““

    #----------------------------------------------------------------------
    def __init__(self window):
        “““Constructor“““
        wx.FileDropTarget.__init__(self)
        self.window = window
        
    #----------------------------------------------------------------------
    def ondropFiles(self x y filenames):
        “““
        When files are dropped write where they were dropped and then
        the file paths themselves
        “““
        self.window.SetInsertionPointEnd()
        self.window.updateText(“\n%d file(s) dropped at %d%d:\n“ %
                              (len(filenames) x y))
        for f

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2736  2012-06-20 23:55  dnd_file.py
     文件        3931  2012-06-21 04:05  dnd_olv.py
     文件        2121  2012-06-20 22:33  dnd_text.py
     文件        3749  2012-06-20 23:32  dnd_url.py

评论

共有 条评论