在tkinter中实时更新消息

时间:2017-05-19 10:03:19

标签: python-3.x tkinter

我已经学习了几个星期的python,并决定进入tkinter和GUI脚本。跟随教程很容易,但最好的学习方法是自己动手。我决定简单地按下按钮获取金钱,这一切都已设置好,但我不能打印出你有多少积分的实时更新。如果有人能帮我,那就会膨胀。提前致谢! :)

P.S。除了“你有一些钱”之外,一切都有效,所以不要质疑其余部分。它在其他部分引用

class SellPage(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)

        WelcomePage.configure(self, background='#08FFC7')

        def makeMoney():
            x = random.randint(1,100)
            global money
            if x == 100:
                money = money + 5
            else:
                money = money + 1

        label1 = ttk.Label(self, text="Begin making money!", font=LARGE_FONT)
        label1.pack()
        button1 = ttk.Button(self, text="Make money!", command=makeMoney)
        button1.pack()
        label2 = ttk.Label(self, text="You have "+str(money)+" dollars!")
        label2.pack()

0 个答案:

没有答案