How to add buttons and panels in frame in java?

How do i add buttons?

  • i am new at java and i was wondering how i add a button preferably a costume one to this code. i was also wondering how i add a picture to the background of this screen. Here is my code. import java.awt.Canvas; import java.awt.Color; import javax.swing.JFrame; public class lancher extends Canvas { private static final long serialVersionUID = 1L; public static final int WIDTH = 800; public static final int HIGHT = 400; public static final String TITLE = "fighter 1.0"; public static void main(String[] args) { System.out.println("main running"); // window for launcher lancher game = new lancher(); JFrame frame = new JFrame(); frame.add(game); frame.pack(); frame.setTitle(TITLE); frame.setDefaultCloseOperation(JFram… frame.setSize(WIDTH, HIGHT); frame.setLocationRelativeTo(null); frame.setResizable(true); frame.setVisible(true); frame.setBackground(Color.green); System.out.println("running"); } }

  • Answer:

    alls you need is a button pin and string. and then you put it where you want it and sew the little bugger on there

Robert David at Yahoo! Answers Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.