奇妙な問題が発生しています...Named_Buttonクラスを作成しました
class Named_Button(tkinter.Button):
def __init__(self,name='NoName',master,**k):
tkinter.Button.__init__(master,**k)
self.pack()
self.name = name
root = Tk()
Named_Button(root,name='hi',height='4')
root.mainloop()
ボタンを作成しようとすると、次のエラーが発生します。
AttributeError: 'Named_Button' object has no attribute 'tk'
何か案は?