0

我的 python 代码有问题。我正在使用 tkinter 在 python 中编写一个 GUI,它显示几个块,大约 10 行,每行有 4 个单选按钮,一个输入字段和一个比例。下面的代码

    for r,v,mi,ma,i in zip(self.radiobuttonShapes, self.valueShapes, self.minShapes, self.maxShapes, range(1,10)):
        ttk.Label(self.Shape, text="Shape " + str(i)).grid(column=0, row=i)
        ttk.Radiobutton(self.Shape, text="Off", variable=r, value=1, command=self.resetAllRadiosShape).grid(column=1, row=i)
        ttk.Radiobutton(self.Shape, text="Max", variable=r, value=2, command=self.resetAllRadiosShape).grid(column=2, row=i)
        ttk.Radiobutton(self.Shape, text="Min", variable=r, value=3, command=self.resetAllRadiosShape).grid(column=3, row=i)
        ttk.Radiobutton(self.Shape, text="Approx", variable=r, value=4, command=self.resetAllRadiosShape).grid(column=4, row=i)
        ttk.Entry(self.Shape, textvariable=v).grid(column=5, row=i)
        ttk.Scale(self.Shape, from_=mi, to=ma, variable=v).grid(column=6, row=i)

这主要工作正常。当我想添加一个标签以将其全部放入并用另一行(包括输入字段和比例)扩展该标签以与 approx 选项一起使用时,我的问题就出现了。

我的问题包括无法动态创建变量,并且之后无法通过它们的方法访问它们。

可能不太清楚,但我认为下面的虚拟代码使它更容易。我希望能够使其部分处于非活动状态(未选择 approx 时的 approx 字段)。

for i in 1 2 3 4 5 6 7 8 9
    self.outerLabel$(i) = ttk.Label(self.Shape).grid(row=i)
    self.upperLabel$(i) = ttk.Label(self.outerLabel$(i)).grid(row=0)
    ttk.Radiobutton(self.upperLabel$(i)).grid(column=0)
    ttk.Radiobutton(self.upperLabel$(i)).grid(column=1)
    ttk.Radiobutton(self.upperLabel$(i)).grid(column=2)
    ttk.Radiobutton(self.upperLabel$(i)).grid(column=3)
    ttk.Entry(self.upperLabel$(i)).grid(column=4)
    ttk.Scale(self.upperLabel$(i)).grid(column=5)
    self.lowerLabel$(i) = ttk.Label(self.outerLabel$(i)).grid(row=1)
    ttk.Entry(self.lowerLabel$(i)).grid(column=0)
    ttk.Scale(self.lowerLabel$(i)).grid(column=1)
    self.lowerLabel$(i).configure(state=DISABLED)
4

1 回答 1

0

您应该为此使用字典,而不是动态变量名称,设置代码如下所示:

def __init__(self):
    self.outerLabels = {}
    self.upperLabels = {}
    # whatever else is currently in __init__()

无论代码来自您的问题:

for i in range(1, 10):
    self.outerLabels[i] = ttk.Label(self.Shape).grid(row=i)
    self.upperLabels[i] = ttk.Label(self.outerLabels[i]).grid(row=0)
    ttk.Radiobutton(self.upperLabels[i]).grid(column=0)
    ttk.Radiobutton(self.upperLabels[i]).grid(column=1)
    ttk.Radiobutton(self.upperLabels[i]).grid(column=2)
    ttk.Radiobutton(self.upperLabels[i]).grid(column=3)
    ttk.Entry(self.upperLabels[i]).grid(column=4)
    ttk.Scale(self.upperLabels[i]).grid(column=5)
    self.lowerLabels[i] = ttk.Label(self.outerLabels[i]).grid(row=1)
    ttk.Entry(self.lowerLabels[i]).grid(column=0)
    ttk.Scale(self.lowerLabels[i]).grid(column=1)
    self.lowerLabels[i].configure(state=DISABLED)
于 2012-04-10T20:13:08.253 回答