调用函数时增加小部件创建位置的问题

时间:2018-10-20 03:38:54

标签: python user-interface tkinter grid

我试图使此函数分别创建一个标签和2个按钮,并且每次调用此函数时,将在下一行(直接在前3个小部件的下方)创建3个小部件。

但是,尽管计数器增加了,但是我不确定为什么为什么在同一行上创建项目(在调用该函数时有效地重叠在同一行上)。

    def fetch_quick(self, entries):
    for entry in entries:
        text = entry[1].get()
        print(text)

        exec("app._framea" + str(self._qqq+7) + "= tk.Frame(app._master, bg='white')")
        exec("app._framea" + str(self._qqq+7) + ".grid(row=" + str(self._qqq+6) + ")")

        exec("self.queue_entry_quick" + str(self._qqq) + " = Label(app._framea" + str(self._qqq+7) + ", text='1    '+text +'                 0                              a few seconds ago')")
        exec("self.queue_entry_quick" + str(self._qqq) + ".grid(row=" + str(self._qqq) + ")")

        exec("self._Button" + str(self._qqq) + " = Button(app._framea" + str(self._qqq+7) + ", text = self._qqq, width = 2, command=app._framea" + str(self._qqq+7) + ".destroy, bg='red')")
        exec("self._Buttonb" + str(self._qqq) + " = Button(app._framea" + str(self._qqq+7) + ", text = self._qqq, width = 2, command=app._framea" + str(self._qqq+7) + ".destroy, bg='green')")



        exec("self._Button" + str(self._qqq) + ".grid(row=" + str(self._qqq) + ", column=1)")
        exec("self._Button" + str(self._qqq) + ".bind('<Button-1>',self.call)")
        exec("self._Buttonb" + str(self._qqq) + ".grid(row=" + str(self._qqq) + ", column=2)")
        exec("self._Buttonb" + str(self._qqq) + ".bind('<Button-1>',self.call)")
        abcd.append(text)  
        self._qqq += 1
        print(self._qqq)

我认为这可能是所有小部件的小部件的创建位置(在网格上)预设为行0的问题,因此每次调用该函数时,它都不会更新self._qqq。如果是这样,我仍然不确定该怎么办

0 个答案:

没有答案