Glade 3 标准按钮布局
我想使用 Glade 3(或 gtk 和 Python)创建一个对话框。在 Glade 2 中,如果您想创建一个对话框,可以选择设置“标准按钮布局”,它将自动创建一个“确定”按钮和一个“取消”按钮,并返回 gtk.RESPONSE_OK 或 gtk.REPONSE_CANCEL。 Glade 3 中尚未重新实现此功能。
如何创建一个包含“确定”和“取消”按钮并返回正确响应的对话框?
干杯,
皮特
I want to create a dialog using Glade 3 (or gtk and Python). In Glade 2 if you wanted to create a dialog box there was an option to set a "standard button layout" which would automatically create an Ok button and a Cancel button which return either gtk.RESPONSE_OK or gtk.REPONSE_CANCEL. This feature has not been reimplmented in Glade 3.
How can I create a dialog which will have ok and cancel buttons which return the correct response?
Cheers,
Pete
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Glade 中手动创建它们;遗憾的是,响应代码只能设置为数字。您需要的数字位于此处:OK 为 -5,取消是-6。
或者您可以在代码中创建它:
You can create them manually in Glade; the response code can unfortunately only be set to a number. The numbers you need are here: OK is -5, Cancel is -6.
Or you can create it in code: