import javax.swing.*;
import java.awt.*;

public class CreateToolbar{
	public static void main(String[] args) {
		JFrame frame = new JFrame("Create a toolbar Which have three buttons Such as: Cut, Copy, Paste");
		JToolBar toolbar = new JToolBar("Toolbar", JToolBar.HORIZONTAL);
		JButton cutbutton = new JButton(new ImageIcon("cut.gif"));
		toolbar.add(cutbutton);
		JButton copybutton = new JButton(new ImageIcon("copy.gif"));
		toolbar.add(copybutton);
		JButton pastebutton = new JButton(new ImageIcon("paste.gif"));
		toolbar.add(pastebutton);
		frame.getContentPane().add(toolbar,BorderLayout.NORTH);
		frame.setUndecorated(true);
		frame.getRootPane().setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		frame.setSize(500,400);
		frame.setVisible(true);
	}
}

After I execute the above code, there was no build problem. When I run it, everything fine except, the icons was not displayed. Please advice. Thanks.

Recommended Answers

All 2 Replies

Thanks, will try it n update it here.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.