gpt4 book ai didi

java - 是否可以在标题阅读对话框的底部添加消息栏/工具栏?

转载 作者:行者123 更新时间:2023-11-30 11:39:40 30 4
gpt4 key购买 nike

使用我的 TitleAreaDialog 是否可以在按钮下方的底部添加一个区域或一个栏。当操作发生时,可以向用户显示一条消息。

这是我所指的例子

enter image description here

最佳答案

据我所知,这对于 JFace Dialog 是不可能的。根据您的具体操作,您可能想看看 JFace ApplicationWindow .这个类有一个方法 addStatusLine()。您必须重写以下方法:

@Override
protected StatusLineManager createStatusLineManager() {
StatusLineManager statusLineManager = new StatusLineManager();
statusLineManager.setMessage(null, "YOUR_MESSAGE");
return statusLineManager;
}

您可以更改文本:

getStatusLineManager().setMessage("YOUR_NEW_MESSAGE");

Here是对 ApplicationWindow 类的出色概述。

关于java - 是否可以在标题阅读对话框的底部添加消息栏/工具栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13141825/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com