0

目前我正在从插件加载我的工具的启动画面图像。是否可以从外部插件加载启动画面图像[从其他硬盘驱动器路径]?我的要求是为用户提供更改启动画面的选项图片来自我的产品本身。如果可能,请举例说明。提前致谢!

4

1 回答 1

2

尝试创建自定义启动画面,例如使用以下线程:Eclipse RCP 应用程序 - 自定义启动画面

使用以下扩展点注册您的 SplashHandler:

<extension point="org.eclipse.ui.splashHandlers">
   <splashHandler
        class="com.example.application.splash.SlideShowSplashHandler"
        id="splash.slideshow">
   </splashHandler>
   <splashHandlerProductBinding
        productId="com.example.application.product"
        splashId="com.example.application.splash.slideshow">
   </splashHandlerProductBinding>
</extension>

在 Splash 处理程序中,使用从用户定义的位置获取的图像创建合成。

于 2013-07-31T12:31:10.553 回答