⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 splash.java

📁 一个基于局域网的c/s模式网上购物系统,功能比较全面.数据库为Access.
💻 JAVA
字号:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

class Splash
{
	Window windowSplash;
	
	Splash(JFrame f)
	{
		this.prepareSplash(f);
	}
	
	public void prepareSplash(JFrame f)
	{
		windowSplash = new Window(f);
		JLabel pic = new JLabel(new ImageIcon(".\\Splash.jpg"));
		windowSplash.add(pic,BorderLayout.CENTER);
		windowSplash.setBounds(100,100,824,568);
	}
	
	public void startSplash()
	{
		windowSplash.setVisible(true);
		windowSplash.toFront();
	}
	
	public void stopSplash()
	{
		windowSplash.dispose();
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -