如何以交互方式从GUI中删除内容?

时间:2016-11-23 20:34:15

标签: python tkinter

因此,就目前而言,我正在尝试创建一个GUI,当出现错误时会产生错误代码作为带有tkinter的标签。但是,如果错误得到解决并按下相同的按钮,我也希望错误代码消失

我的代码;

def go(self):

    classname = cxml.classify()
    if type(classname) is str:
        missing = Label(self, text =
            """Invalid System Map.
             Please Double Check Inputs.
             If it needs to be added
            to a list, email me.""", fg='red')
        missing.place(x=275,y=75)
        time.sleep(15)
        missing.destroy()

    else:
        cxml.absolute_payer(classname,folder,file,person,place,thing)
        finished = Button(self, text = 'Done? Click here to Exit', command = lambda: exit())
        finished.place(x=50, y=150)

我有一个引用def go的按钮,当我按下它时,我希望它删除先前输入导致错误时可能生成的错误代码。如果可能的话,我宁愿选择"去"按钮是屏幕上唯一的按钮,直到代码正确执行。

目的是打开应用程序,并且能够在GUI内生成不同的错误代码(在同一位置),只要它保持打开状态。

0 个答案:

没有答案