Topic: ***很多有用的界面制作代码!!!

  Print this page

1.***很多有用的界面制作代码!!! Copy to clipboard
Posted by: newjay
Posted on: 2004-10-13 09:06

软件界面在整个软件中占有相当的地位,然而这方面的代码还很少。因此希望大家如果在这个方面有认为有价值的代码就拿出来共享哈!!!

!!Java Application启动画面的制作!!
1、新建一个启动画面Window类

  java.awt.Window windowSplash;

  2、调用prepareSplash()函数,初始化启动界面

  private void prepareSplash()
 {
    Toolkit toolkit = Toolkit.getDefaultToolkit();
    windowSplash = new Window( this );
    Image image = toolkit.getImage( "images" + File.separator + "splash.gif" );
    ImageCanvas canvas = new ImageCanvas( image );
    windowSplash.add( canvas, "Center" );
    Dimension scmSize = toolkit.getScreenSize();
    int imgWidth = image.getWidth( this );
    int imgHeight = image.getHeight( this );
    windowSplash.setLocation( scmSize.width/2 - (imgWidth/2), scmSize.height/2 - (imgHeight/2) );
   windowSplash.setSize( imgWidth, imgHeight );
  }

  3、在Application的JFrame类(主界面)中调用startSplash(),显示启动界面,然后初试化JFrame的各个可视化组件,初始化后台数据库等(如数据
库的连接)

  private void startSplash()
  {
    windowSplash.setVisible( true );
   windowSplash.toFront();
  }

  4、在所有的初始化工作完成之后,调用stopSplash()函数,停止显示启动画面

  private void stopSplash()
{
   windowSplash.dispose();
}

2.Re:***很多有用的界面制作代码!!! [Re: newjay] Copy to clipboard
Posted by: kavinwang
Posted on: 2004-10-13 13:50

好象只有一个呀,对我虽说用处不大,我想其它很多人会觉得有用的

3.Re:***很多有用的界面制作代码!!! [Re: newjay] Copy to clipboard
Posted by: parapara
Posted on: 2004-10-22 13:11

不错,会用得上,但是就一个啊,不是说很多么?

4.Re:***很多有用的界面制作代码!!! [Re: newjay] Copy to clipboard
Posted by: selina
Posted on: 2004-10-26 15:34

是呀
多做几个呀
有远程控制的界面吗?

5.Re:***很多有用的界面制作代码!!! [Re: newjay] Copy to clipboard
Posted by: qineremma
Posted on: 2004-10-27 13:40

http://www.senun.com/Left/Programming/Java_old/Examples_swing/SwingExamples.html


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923