TestGridBagLayout6.java
Select all
/* TestGridBagLayout6.java CIS 260 2/22/2006 David Klick Demonstration of GridBagLayout, this time with no "fill" and a larger frame size. */ import java.awt.*; import java.awt.event.*; import javax.swing.*; public class TestGridBagLayout6 extends JFrame { public static void main(String[] args) { TestGridBagLayout6 app = new TestGridBagLayout6(); app.setDefaultCloseOperation(EXIT_ON_CLOSE); app.init(); } public void init() { int i; JButton btn[] = new JButton[4]; Container c = getContentPane(); c.setLayout(new GridBagLayout()); GridBagConstraints gb = new GridBagConstraints(); for (i=0; i