我正在开发一个具有可拆卸视图的 Eclipse RCP 项目。我希望能够在视图分离后将一些文本放在围绕视图的窗口边框上。有人对这个有经验么?开发环境是Windows上的Eclipse 3.4。谢谢。
问问题
913 次
2 回答
0
我不确定是否可以通过常规更新触发updateTitle()
:
如果你看一下代码org.eclipse.ui.internal.DetachedWindow
,你会看到一个令人不安的方法updateTitle()
:
private void updateTitle() {
if (activePart != null) {
// Uncomment to set the shell title to match the title of the active part
// String text = activePart.getTitle();
//
// if (!text.equals(s.getText())) {
// s.setText(text);
// }
}
}
都评论了!
于 2009-11-25T07:37:00.113 回答
0
你不能。分离出来的是工具窗口而不是主窗口,所以在上面有标题是不好的
于 2011-03-18T10:24:01.613 回答