Latest News

 










GridLayout example

Previous slide Next slide Back to first slide View graphic version


GridLayout


 
My other sites

Latest News

 










GridLayout example

    import java.awt.*;
    public class TestGridLayout extends Frame {
    public static void main(String[] args) {
    TestGridLayout tgl = new TestGridLayout();
    tgl.setSize(400,270);
    tgl.setLayout(new GridLayout(0, 3, 10, 10));
    for(int i=1; i<=9; i++) {
    tgl.add(new Button("Button Nr." + i));
    }
    tgl.show();
    }
    }

Previous slide Next slide Back to first slide View graphic version