Slide 37
Slide 37 text
Exercise FlowLayout
import java.awt.*;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class PanelDemo2 {
public JFrame f;
public JPanel p,p2,p3,p4,p5,p6,p7;
public JButton b1, b2, b3, b4, b5;
public PanelDemo2() {
f = new JFrame("Flow Layout Demo");
p = new JPanel();
b1 = new JButton("INSERT");
b2 = new JButton("UPDATE");
b3 = new JButton("DELETE");
b4 = new JButton("SELECT");
b5 = new JButton("CLOSE");
}