你能在 Glade 中为 Gtk 对话框设置 DefaultResponse 吗?
在我的代码中,我有这样的行:
Builder builder = new Builder();
builder.AddFromFile(gladefile);
FileChooserDialog dialog =
(FileChooserDialog) builder.GetObject("dialog");
dialog.DefaultResponse = ResponseType.Ok;
有没有办法在林间空地文件中设置默认响应,而不是手动执行?
In my code, I have lines like this:
Builder builder = new Builder();
builder.AddFromFile(gladefile);
FileChooserDialog dialog =
(FileChooserDialog) builder.GetObject("dialog");
dialog.DefaultResponse = ResponseType.Ok;
Is there a way to set the default response in the glade file, rather than doing it manually?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。当您在 Glade 中创建 GtkFileChooserDialog 时,您将按钮添加到对话框的按钮框中。例如,“确定”和“取消”。要将“确定”按钮设置为默认,请选择“确定”按钮,转到“常用”属性,然后启用“可以默认”和“有默认”。
Yes. When you create a GtkFileChooserDialog in Glade, you add the buttons to the dialog's button box. For example, "OK" and "Cancel". To make the "OK" button default, select the "OK" button, go to the "Common" properties, and turn on "Can default" and "Has default".