因此,我正在使用.place來設置我的小部件的位置。在tkinter中銷燬來自不同子例程的小部件
def printresults():
SClabelspare=Label(cwindow, text ="Please enter the Customers ID Number:").place(x=10,y=560)
我正在尋找調用另一個子例程,將銷燬這些小部件。我相信有一些叫.destroy()或.place_destroy?我不太清楚如何將這些工作,雖然我已經嘗試創建一個看起來像這樣:
def destroy_widgets():
SClabelspare.destroy()
,但它只是產生一個錯誤代碼,說NameError: global name 'SClabelspare' is not defined
任何幫助將不勝感激!
不要爲格式化道歉,修復格式。 –