会社の製品を見つけるための最初の GUI アプリケーションをコーディングしています。
from Tkinter import *
import tkMessageBox
def debug():
buttonText = relStatus.get()
tkMessageBox.showinfo("You Clicked ", buttonText)
return
app = Tk()
app.title("Ironcraft Product Finder")
app.geometry("700x500")
labelText = StringVar()
labelText.set("Choose an Appliance Type")
topLabel = Label(app, textvariable = labelText, height = 5).pack()
fire = Button(app, text="Fire", width=20, command=debug)
fire.pack(padx=10)
relStatus = StringVar()
relStatus.set(fire.text)
app.mainloop()
これを実行すると、次のエラー メッセージが表示されます。
AttributeError: Button instance has no attribute 'text'
しかし、「火」の創造において、それは言う
text="fire"
これ属性じゃない?