TestGridBagLayout7.java
Select all
/* TestGridBagLayout7.java CIS 260 2/22/2006 David Klick Demonstration of GridBagLayout using "anchor" settings to place components in specific sections of the area they are in. */ import java.awt.*; import java.awt.event.*; import javax.swing.*; public class TestGridBagLayout7 extends JFrame { public static void main(String[] args) { TestGridBagLayout7 app = new TestGridBagLayout7(); 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