您好我正在尝试创建一个具有以下功能的按钮:
B_home = ttk.Button(self, width=17, height=20, text='Home', command=lambda: controller.show_frame(main_menu))
当我运行我的代码时,我收到一条错误消息:_tkinter.TclError:unknown option" -height"。
我已经阅读了tkinter文档,并且确实存在height参数(https://www.tutorialspoint.com/python/tk_button.htm),为什么会发生这种情况呢?
还应该提到的是,当我运行没有height参数的代码时,它的工作正常。