Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

JToolBar toolbar =new JToolBar();

toolbar.setRollover(true);
JMenu file =new JMenu("File");

file.add("add");
toolbar.add(file);

JMenuItem i1=new JMenuItem("Add");


toolbar.addSeparator();
toolbar.add(new JButton("Edit"));
toolbar.add(new JComboBox(new String[] { "Opt-1", "Opt-2", "Opt-3", "Opt-4"
}));
Container contentPane=f.getContentPane();
contentPane.add(toolbar,BorderLayout.NORTH);
JTextArea textArea =new JTextArea();
JScrollPane mypane =new JScrollPane(textArea);
contentPane.add(mypane,BorderLayout.EAST);

You might also like