Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 TkInter 在 python 中为 Mac OSX 开发一个简单的应用程序。
我想知道如何为 tkinter 中的对话框设置“默认按钮”。请参阅人机界面指南以了解这意味着什么。
这甚至可能吗?
Button 和 ttk.Button 小部件都有一个default属性。将其设置为"active"应该会给您所需的视觉外观。您需要将焦点设置到该按钮和/或添加绑定<Return>以调用该按钮。
default
"active"
<Return>