Switch to full style
Graphics and animation Java code examples
Post a reply

GridLayout-window with buttons

Sat Feb 09, 2013 12:10 am

GridLayout-window with buttons
java code
import java.awt.*;

public class GridLayout extends Frame {
private boolean inAnApplet = true;

public GridLayout() {
setLayout(new GridLayout(0,2));
setFont(new Font("Aril", Font.PLAIN, 14));

add(new Button("Btn-1"));
add(new Button("Btn-2"));
add(new Button("Btn-3"));
add(new Button("Btn-4"));
add(new Button("Btn-5"));
}

public boolean handleEvent(Event e) {
if (e.id == Event.WINDOW_DESTROY) {
if (inAnApplet) {
dispose();
return true;
} else {
System.exit(0);
}
}
return super.handleEvent(e);
}

public static void main(String args[]) {
GridLayout window = new GridLayout();
window.inAnApplet = false;

window.setTitle("GridLayout Example");
window.pack();
window.show();
}
}




Post a reply
  Related Posts  to : GridLayout-window with buttons
 FlowLayout with window-Buttons Layout Example     -  
 flash buttons     -  
 JSF Radio Buttons Form     -  
 Creating Glass Buttons     -  
 Skymiles v1.1 Menu buttons     -  
 form-Radio-buttons-checkBoxs-actions-HTML-Tags     -  
 new window using javascript     -  
 Window Through C Language     -  
 Window Tabifier     -  

Topic Tags

Java AWT