如何从Gtk 3 Window

时间:2017-10-31 08:18:47

标签: python-3.x gtk3 pygobject

我正在使用python3和Gtk3,我需要基本remove来自Gtk.Window的一些小部件,并在Gtk.Buttonclicked时将其替换为其他小部件。我有尝试将Gtk.ListBox es与Gtk.ListBoxRow s一起使用,到目前为止,我可以删除Row中的所有ListBox但是当我尝试将其添加回来时,基本上没有发生。这是我的代码的一部分:

def left_view(self, box):
    listbox = box

    row0 = Gtk.ListBoxRow()
    row0.set_halign(Gtk.Align.START)
    listbox.add(row0)
    #Adding HorizontalBox to place widgets
    hbox = Gtk.Box(spacing=10,orientation=Gtk.Orientation.HORIZONTAL)
    row0.add(hbox)
    prod_name = Gtk.Label()
    stock_count = Gtk.Label()
    prod_name.set_text('Product Name')
    stock_count.set_text('Stock   ')
    self.prod_name_input = Gtk.Entry()
    self.stock_count_input = Gtk.Entry()

    #Packaging 101
    hbox.pack_start(prod_name, True, True, 0)
    hbox.pack_start(self.prod_name_input, True, True, 0)
    hbox.pack_start(stock_count, True, True, 0)
    hbox.pack_start(self.stock_count_input, True, True, 0)

该函数将被赋予Gtk.ListBox作为参数。到目前为止,我在向列表框中尝试remove()add()时所拥有的是:

def remover(self,widget):
        vbox = widget.get_parent()
        base = vbox.get_parent()
        children = base.get_children()
        listbox = children[1]
        for row in listbox.get_children():
            listbox.remove(row)
        with open('product_info.json', 'r') as d:
            data = d.read()
            j = json.loads(data)
            d.close()
        self.keys = list(j.keys())
        row0 = Gtk.ListBoxRow()
        listbox.add_child(row0)
        scrollwindow = Gtk.ScrolledWindow()
        scrollwindow.set_hexpand(True)
        scrollwindow.set_vexpand(True)
        row0.add_child(scrollwindow)
        tview = Gtk.TextView()
        scrollwindow.add(tview)
        textbuffer = tview.get_buffer()
        for item in range(0, len(self.keys)):
            textbuffer.insert_at_cursor('   %s\t\t %s \n' %(item, self.keys[item]))

顺便说一下,如果有一种更简单的方法可以在PyGObject中随意替换小部件,请让我知道因为我在相关问题上看到的大部分答案都是完全没用的

1 个答案:

答案 0 :(得分:3)

我对此也感到困惑。事实证明,创建的窗口小部件必须用show()show_all()显式显示。就您而言:

    row0.show_all()

作为最后一个陈述。