文件打开对话框&在pygame中拖放

时间:2016-05-28 10:21:16

标签: python python-3.x pygame

我想构建一个小应用程序;它必须有某种可能性来加载文件。现在我只是将路径复制到应用程序中,但我确实希望建立一种可能性

  • 将文件从外部拖放到GUI中
  • 有一个文件打开对话框。

有没有办法完成至少其中一项要求?因为我不想自己创建非本机文件打开对话框。

1 个答案:

答案 0 :(得分:1)

您可以使用tkinter的文件打开对话框。

要获取文件名,代码将为:

---Table creattion script   
    create table #t
    (
    teamid int,
    teamname varchar(100)
    )

    insert into #t
    select '1','AFC Wimbledon'
    union all
    select '2','Angers'
    union all
    select '3 ','Ards'


--final query
    SELECT teamname as firstname,
     'player'+ cast(n  as varchar(5)) AS [surname],
     teamid
    FROM 
    #t
    CROSS APPLY 
    (select n from numbers nmbr where  nmbr.n<=20)  b
    order by teamid