Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 pygame 窗口,我想知道何时将文件拖放到它上面。我只需要能够获取文件的名称。如何实现?
这是一个可能是您正在寻找 的论坛主题。
和另一个论坛。
以及指向msdn 页面的链接。您可能需要pythoncom库。
类似效果的一种选择是使用 pygame 的 scrap 模块,这样您就可以复制粘贴到窗口中,您的程序只需要查找 ctr-V 事件。
在我正在使用的这个 XFCE 桌面上如果我在选择文件的情况下按 ctrl-C,当我输入
pygame.scrap.init() types= pygame.scrap.get_types() print dict( [type,pygame.scrap.get(type)] for type intypes )