Python GTK更新标签

时间:2018-12-06 11:49:12

标签: python gtk3

我对使用Python进行GTK编程完全陌生。我要解决以下任务:单击“开始”按钮后,应生成20个随机数,并在窗口中显示。每个数字之间的时间在增加。

当然,获得随机数不是问题,但是在我的标签中仅显示最后一个数字。但是,print num命令显示,数字的生成方式与我希望它们生成的方式相同。我现在如何在标签中显示数字?

非常感谢

约瑟夫

我的代码如下:

import time as t
import random as rd
import math 
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, GLib


class MyWindow(Gtk.Window):

    def __init__(self):
        Gtk.Window.__init__(self, title="Window 1")

        box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=10)
        box.set_homogeneous(False)

        self.label1 = Gtk.Label()
        box.pack_start(self.label1, True, True, 0)

        button = Gtk.Button(label="Start")
        button.connect("clicked", self.on_button_clicked)
        box.pack_start(button, True, True, 0)

        self.add(box)

    def on_button_clicked(self, widget):
        itr=20
        for i in range(itr):
            waittime=(float(i)/float(itr)*1)**3
            num=rd.randint(1,10)
            print num
            self.label1.set_text(str(num))
            t.sleep(waittime)

win = MyWindow()
win.connect("destroy", Gtk.main_quit)
win.show_all()


Gtk.main()

1 个答案:

答案 0 :(得分:0)

您不允许/强制Gtk更新标签文本。例如:

.vs