Total members 11890 |It is currently Wed Apr 24, 2024 11:15 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





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();
}
}




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

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



Topic Tags

Java AWT
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com