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

📄 frmsplash.java~1~

📁 《JBuilder编程技术与实例》(2006 四维科技 人民邮电)赠送代码——库存管理系统(Access)
💻 JAVA~1~
字号:
package MainForm;

/*
********************************************************************************
*																			   *
* Programmer: Philip V. Naparan                                                *
* Contact No.: 639186443161                                                    *
* E-mail Address: philipnaparan@yahoo.com                                      *
* Website: http://www.naparansoft.cjb.net                                      *
*    													   					   *
* "MABUHAY ANG MGA PINOY","PLEASE DON'T FORGET TO VOTE"                        *
*    													   					   *
* Note:																		   *
*      This is not intended to used in a big business because this system was  *
*      created for small business only. If you own a big business and planning *
*      to have a best software for your business then contact me. :-)          *
*																			   *
********************************************************************************
*/

import javax.swing.*;
import java.awt.*;

public class FrmSplash extends JWindow implements Runnable{
        public void run(){
                JLabel SplashLabel = new JLabel(new ImageIcon("images/splash.jpg"));
                Dimension screen = 	Toolkit.getDefaultToolkit().getScreenSize();

                getContentPane().add(SplashLabel,BorderLayout.CENTER);

                setSize(490,300);
                setLocation((screen.width - 490)/2,((screen.height-300)/2));
                show();
        }
}

⌨️ 快捷键说明

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