Thursday, July 10, 2008

Learn How to Change Icon of window

Here is the code for replacing default Java-Cup icon from your own image file of Window Frame:-
AppWindow appwin=new AppWindow();
Image imIcon=Toolkit.getDefaultToolkit().getImage("x.jpg");
appwin.setIconImage(imIcon);

Note: Here AppWindow is a class extended from Frame class.

No comments: