如何使用PyQt在内部使用combobox创建组合框

时间:2016-03-10 18:17:50

标签: python pyqt

例如假设我有这本词典 - dict = {a: 1,2,3, b: 4,5,6, c: 7,8,9} 如何使用组合框为dict的值创建用于dict的组合框?

enter image description here

1 个答案:

答案 0 :(得分:2)

听起来你想要一个嵌套菜单

enter image description here

在Qt中执行此操作的一种方法是使用import json filename = 'html-json.txt' with open(filename, encoding="utf8") as f: jsonContentTxt = f.readlines() json_data = json.dumps(jsonContentTxt) print (json_data) QToolButton

QMenu