目前,我正在为我的工具加载我的闪屏图像从plugin.Is它可以加载闪屏图像从外部pluginFrom其他硬盘驱动器path?.My的要求是给用户一个选项,以改变闪屏图像从我的产品itself.If可能请给我一个例子。提前感谢!
发布于 2013-07-31 20:31:11
尝试创建自定义闪屏,使用以下线程例如:Eclipse RCP application - custom splash screen。
使用以下扩展点注册您的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处理程序中,使用从用户定义的位置拍摄的图像创建复合图像。
https://stackoverflow.com/questions/17967465
复制相似问题