private JPanel Bpanel()
{
JPanel bPanel = new JPanel();
bPanel.setLayout(new GridLayout(0,1));
JButton button = new JButton("Save");
button.setPreferredSize(new Dimension(100, 20));
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
writeDB();
}
});
bPanel.add(button);
return bPanel;
}
No comments:
Post a Comment