我如何在pygame中blit pgu gui对象

时间:2010-04-10 15:35:46

标签: user-interface pygame

我有图像。我正在尝试加载一个按钮。我正在使用pygame.image.load函数加载图像。我正在使用pgu gui库和pygame来创建一个gui.button.Now我有在图像上按下这个按钮。

1 个答案:

答案 0 :(得分:1)

首先在图像上“创建”应用容器,然后将按钮添加到此框架,如下所示:

    from pgu import gui 
    my_app = gui.App()
    my_container = gui.Container(width =1200,height = 900)#or whatever width, height you wish
    my_button = gui.Button("Quit")
    app.connect(gui.QUIT,app.quit,None)

    ##The button CLICK event is connected to the app.close method.  

    my_button.connect(gui.CLICK,app.quit,None)
    my_container.add(my_button,100,100)'

我希望这会有所帮助。