简单列表框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单列表框相关的知识,希望对你有一定的参考价值。
treeview = self.tree.get_widget("myTreeView") liststore = gtk.ListStore(str) # create a list store with just one column (which holds a string) treeview.set_model(liststore) tc = gtk.TreeViewColumn("TheTitle") treeview.append_column(tc) cr = gtk.CellRendererText() tc.pack_start(cr, True) tc.add_attribute(cr, "text", 0)
以上是关于简单列表框的主要内容,如果未能解决你的问题,请参考以下文章
如何在 GridView::widget、Yii2 的搜索框中使用简单的下拉列表?