GridBagLayout with anchor constraints : GridBagLayout « Swing JFC « Java






GridBagLayout with anchor constraints

GridBagLayout with anchor constraints
   

import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class GridBagWithAnchor {

  public static void main(String[] args) {
    JFrame f = new JFrame(
        "Demonstrates the use of anchor constraints");
    JPanel p = new JPanel(new GridBagLayout());

    p.setLayout(new GridBagLayout());
    GridBagConstraints c = new GridBagConstraints();
    c.insets = new Insets(2, 2, 2, 2);
    c.weighty = 1.0;
    c.weightx = 1.0;
    c.gridx = 0;
    c.gridy = 0;
    c.gridheight = 2;
    c.anchor = GridBagConstraints.NORTH; // place component on the North
    p.add(new JButton("Java"), c);
    c.gridx = 1;
    c.gridheight = 1;
    c.gridwidth = 2;
    c.anchor = GridBagConstraints.SOUTHWEST;
    p.add(new JButton("Source"), c);
    c.gridy = 1;
    c.gridwidth = 1;
    c.anchor = GridBagConstraints.CENTER; // remember to rest to center
    p.add(new JButton("and"), c);
    c.gridx = 2;
    p.add(new JButton("Support !!!"), c);

    WindowListener wndCloser = new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    };
    f.addWindowListener(wndCloser);

    f.getContentPane().add(p);
    f.setSize(600, 200);
    f.show();
  }
}


           
         
    
    
  








Related examples in the same category

1.GridBagLayout with weightx and weighty constraintsGridBagLayout with weightx and weighty constraints
2.GridBagLayout with constraintsGridBagLayout with constraints
3.Simplest gridbag layoutSimplest gridbag layout
4.GridBagLayout with weight constraintGridBagLayout with weight constraint
5.GridBagLayout with gridwidth and gridheight constraintsGridBagLayout with gridwidth and gridheight constraints
6.GridBagLayout PaneGridBagLayout Pane
7.Work with GridBagConstraints 1
8.Work GridBagConstraints 3
9.Work with GridBagConstraints 2
10.GridBagConstraints.BOTH
11.Create and set a gridbag layout and how to set gridbag constraints
12.Associate the gridbag constraints with the component
13.Place a component at cell location (1,1)
14.Setting the Location of a Component in a GridBagLayout
15.Making a GridBagLayout Fill the Container
16.Getting the Number of Rows and Columns of Cells in a GridBagLayout
17.Setting the Stretchyness of Rows and Columns in a GridBagLayout Using Layout Weights
18.Place a component at (0,1) with a column weight 1 and a row weight of 2
19.Setting Stretchyness of a GridBagLayout Using Fill
20.Make the component only stretch horizontally
21.Make the component only stretch vertically
22.Make the component on stretchable
23.Make the component stretch in both directions
24.Setting the Space around a Component Within the Cell of the GridBagLayout Using Insets
25.A GridBagLayout Example: weightx, weighty
26.Positioning a component in the center of other component using GridbagLayout
27.Work with GridBagConstraints 5
28.A frame that uses a grid bag layout to arrange font selection components