Glade 3 标准按钮布局

发布于 2024-08-30 04:19:20 字数 230 浏览 4 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿忘心安 2024-09-06 04:19:20

您可以在 Glade 中手动创建它们;遗憾的是,响应代码只能设置为数字。您需要的数字位于此处:OK 为 -5,取消是-6。

或者您可以在代码中创建它:

dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL, 
    buttons=gtk.BUTTONS_OK_CANCEL, 
    message_format='Are you sure you want to reticulate the splines?')
response = dialog.run()
dialog.destroy()

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:

dialog = gtk.MessageDialog(flags=gtk.DIALOG_MODAL, 
    buttons=gtk.BUTTONS_OK_CANCEL, 
    message_format='Are you sure you want to reticulate the splines?')
response = dialog.run()
dialog.destroy()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文