import java.awt.*;
import javax.swing.*;
public class BorderLayoutExample extends JFrame {
public static void main(String[] args) {
//JFrame.setDefaultLookAndFeelDecorated(true);
JFrame bs = new JFrame();
bs.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container pane = bs.getContentPane();
pane.setLayout(new BorderLayout());
JButton label = new JButton("North");
label.setFont(new Font("Courier", Font.BOLD, 36));
pane.add(label, BorderLayout.NORTH);
label = new JButton("South");
label.setFont(new Font("Courier", Font.BOLD, 36));
pane.add(label, BorderLayout.SOUTH);
label = new JButton("East");
label.setFont(new Font("Courier", Font.BOLD, 36));
pane.add(label, BorderLayout.EAST);
label = new JButton("West");
label.setFont(new Font("Courier", Font.BOLD, 36));
pane.add(label, BorderLayout.WEST);
label = new JButton("Center");
label.setFont(new Font("Courier", Font.BOLD, 36));
pane.add(label, BorderLayout.CENTER);
bs.setSize(400, 300);
bs.setVisible(true);
}
}
Friday, 26 January 2018
Related Posts:
Code with problem in javaimport javax.swing.JOptionPane;import java.util.Scanner;public class C… Read More
Candy bar example in java import java.io.*;//import javax.swing.*;class Candy { public sta… Read More
throw exception in java import java.io.*; //include Java's standard Input and Output routinesc… Read More
Area in java import javax.swing.*;public class Area { // Constant PI is defin… Read More
0 comments: