我正在尝试使用python在Qt中添加三个依赖组合框。 这意味着您可以更改一个组合框,该组合框将更改secound组合框中的项目列表。您可以在此处选择另一个项目,以更改第三个组合框中的选择。
一切正常,直到您将第一个组合框更改为秒数(一直更改第二次组合框和第三个组合框时,一切正常)
我的目标是根据需要,根据第一个组合框(和第二个组合框)更改所有三个组合框中的值。
这是我的代码:
self.ui.type1CB.currentTextChanged.connect(self.type1_changed)
self.ui.type2CB.currentTextChanged.connect(self.type2_changed)
def type1_changed(self):
self.ui.type2CB.clear()
type1 = self.ui.type1CB.currentText()
rev = ["Ge", "Er"]
cos = ["Au", "Fr", "pe", "So", "Wo"]
if type1 == "Ei":
self.ui.type2CB.addItems(rev)
elif type1 == "Au":
self.ui.type2CB.addItems(cos)
else:
self.ui.type2CB.addItems(" ")
def type2_changed(self):
self.ui.type3CB.clear()
type2 = self.ui.type2CB.currentText()
sa = ["Ge", "Li", "To"]
re = ["Pf", "Ne", "Ve"]
ca = ["Be", "Re", "Ve"]
le = ["Au", "Be", "Ur"]
pr = ["Le", "Ge", "Sü", "Kl", "Hy", "Ge", "Ve"]
ot = ["An", "Ar", "Fa", "Ba", "Fe"]
ho = ["Ha", "Ne", "Te", "Mi"]
if type2 == "Ge":
self.ui.type3CB.addItems(sa)
elif type2 == "Er":
self.ui.type3CB.addItems(re)
elif type2 == "Au":
self.ui.type3CB.addItems(ca)
elif type2 == "Fr":
self.ui.type3CB.addItems(le)
elif type2 == "pe":
self.ui.type3CB.addItems(pr)
elif type2 == "So":
self.ui.type3CB.addItems(ot)
elif type2 == "Wo":
self.ui.type3CB.addItems(ho)
else:
self.ui.type3CB.addItems(" ")