You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
345 B
18 lines
345 B
9 years ago
|
package com.fr.start;
|
||
|
|
||
|
import java.awt.Image;
|
||
|
|
||
|
import com.fr.base.BaseUtils;
|
||
|
|
||
|
public class ChartSplashPane extends SplashPane{
|
||
|
|
||
|
/**
|
||
|
* 创建启动画面的背景图片
|
||
|
*
|
||
|
* @return 背景图片
|
||
|
*
|
||
|
*/
|
||
|
public Image createSplashBackground() {
|
||
|
return BaseUtils.readImage("/com/fr/design/images/splash4Chart.png");
|
||
|
}
|
||
|
}
|