如何将消息和任务添加到 Eclipse RCP 应用程序中的启动屏幕进度
我有一个 Eclipse RCP 应用程序,它在激活器的启动方法中执行一些耗时的操作。现在我想在启动屏幕中显示这些事情的用户友好消息以及进度指示,但我没有找到任何解决方案。
我设法在启动屏幕中显示一个带有消息的进度条,但它显示的唯一内容是“加载工作台”,这是在完成所有耗时的事情之后。
所以我的问题是:如何将带有用户友好消息的任务添加到启动屏幕进度中?
提前致谢, 迈克尔
I have an Eclipse RCP application which does some time consuming things in the start method of the activator. Now I want to show user friendly messages for these things with progress indication in the splash screen but I do not find any solution for this.
I managed it to have a progressbar with messages in the splash screen but the only thing it shows is "Load Workbench" and this after all the time consuming things are done.
So my question is: how can I add tasks with user friendly messages to the splash screen progress?
Thanks in advance,
Michael
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要扩展
org.eclipse.ui.splashHandlers
扩展点。You need to extend
org.eclipse.ui.splashHandlers
extension point.