gpt4 book ai didi

python-2.7 - python GTK : ComboBoxEntry with Enum

转载 作者:行者123 更新时间:2023-12-03 16:37:23 26 4
gpt4 key购买 nike

我真的很努力地寻找一个示例来创建 Enum 并将其作为模型发送到 ComboBoxEntry。

有人可以上传正确方法的示例吗?

这是我的代码的开头:

model = "one", "two", "three"
liststore = gtk.ListStore(str)
for item in model:
liststore.append([item])
cbe = gtk.ComboBoxEntry(liststore)

我希望model 是写能力的枚举:

# for example:
cbe.set_active(one)
# or
if cbe.get_active() == model.one: ...

非常感谢

最佳答案

我用这个:

    ##  Length
nLines = tableData.data.shape[0]
## Width
nColons = len(tableData.columns)
## +1 adds an extra column for numbering (at the left side)
types = [str] * (nColonnes + 1)
## build it
modelT = gtk.ListStore( * types )

这应该对你有用:

>>> model = ["one", "two", "three"]
>>> types = [str] * len(model)
>>> lists = gtk.ListStore( * types )

关于python-2.7 - python GTK : ComboBoxEntry with Enum,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24404229/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com