WxPython按钮来运行脚本

时间:2012-10-24 12:23:52

标签: python user-interface button wxpython

我已经创建了一个自定义位图按钮 使用代码

PlayButton=wx.Bitmap('play.jpg', wx.BITMAP_TYPE_ANY)
self.PlayButton=wx.BitmapButton(self.bitmap, -1, PlayButton, pos=(190,300))
self.PlayButton.Bind=(wx.EVT_BUTTON, self.playGame)

只是想知道在定义我的函数playGame时,如何在单击时在同一目录中运行外部python文件'game.py'

1 个答案:

答案 0 :(得分:1)

您可以将脚本导入为模块。

import game

...

def playGame(self):
    game.start()