100个java小例子

源代码在线查看: cdelookandfeel.java

软件大小: 748 K
上传用户: kzdai22
关键词: java 100
下载地址: 免注册下载 普通下载 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			

相关资源