我将 Tkinter 用于 GUI,但我有一个问题:我尝试制作一个消息小部件,当我编写时:
body = Message(top, bd = 2)
body.pack(side=RIGHT)
我收到此错误:
body.pack(side=RIGHT)
AttributeError: Message instance has no attribute 'pack'
我不明白这一点,因为我检查了一些指南并允许以这种方式使用“消息”,如示例中所示:http ://www.tutorialspoint.com/python/tk_message.htm
有没有另一种写法?