如何在RCP开发中能够弹出像Eclipse那样子的自动对话框吗?

就是当鼠标放到上面只是,就能够自动弹出来的那种。或者点击的时候也是一样的。... 就是当鼠标放到上面只是,就能够自动弹出来的那种。或者点击的时候也是一样的。 展开
 我来答
双耳猫
推荐于2016-07-27 · 超过23用户采纳过TA的回答
知道答主
回答量:36
采纳率:0%
帮助的人:41万
展开全部
将下面这段代码加入到你的事件处理函数中即可:
new PopupDialog(button.getShell(), PopupDialog.HOVER_SHELLSTYLE,
true, false, false, false, false, null, null) {
private static final int CURSOR_SIZE = 15;

protected Point getInitialLocation(Point initialSize) { //弹出窗口的初始位置,此处为鼠标的位置
//show popup relative to cursor
Display display = getShell().getDisplay();
Point location = display.getCursorLocation();
location.x += CURSOR_SIZE;
location.y += CURSOR_SIZE;
return location;
}

protected Control createDialogArea(Composite parent) { //创建弹出窗口里的内容
Label label = new Label(parent, SWT.WRAP);
label.setText("Only for test");
label.addFocusListener(new FocusAdapter() {
public void focusLost(FocusEvent event) {
close();
}
});
// Use the compact margins employed by PopupDialog.
GridData gd = new GridData(GridData.BEGINNING
| GridData.FILL_BOTH);
gd.horizontalIndent = PopupDialog.POPUP_HORIZONTALSPACING;
gd.verticalIndent = PopupDialog.POPUP_VERTICALSPACING;
label.setLayoutData(gd);
return label;
}
}.open();//打开对话框

你可以自己设置弹出窗口的内容布局,修改里面的函数就可以了。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式