如何将功能键绑定到 tkinter 中的按钮?

How do I bind Function keys to Buttons in tkinter?

我想给菜单按钮绑定一个功能键,比如当我点击F5程序结束时,我用了root.bind("<Function-5>", quit)但是它错了。有没有其他方法可以做到这一点,这样我就可以在单击 F5 时使用命令?

摘自@TheLizzard 评论,
您应该使用它在根目录中绑定 F5 :

root.bind("<F5>",quit)

您可以从 here and here

了解这些