深入浅出JavaSwing程序设计一书的源代码

源代码在线查看: cdelookandfeel.java

软件大小: 792 K
上传用户: huanghuanl
关键词: JavaSwing 程序设计 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				import javax.swing.*;
				
				public class CDELookAndFeel{
					
				  public static void main(String[] args){
				
				    try {
					UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");
				    }  
				    catch ( Exception e ) {
					    System.out.println ("Unexpected error. \nProgram Terminated");
					    e.printStackTrace();
					    System.exit(0);
				    }
				    new MainFrame();
				  } // end of main
				}//end of class CDELookAndFeel			

相关资源