Create a Java GUI application that displays a window that is 300 pixels high by 300 pixels wide with a button labeled “Click Me”. The button should have no functionality at this point.

What will be an ideal response?


```
import javax.swing.JFrame;
import javax.swing.JButton;

public class FirstGui
{
public static final int WIDTH = 300;
public static final int HEIGHT = 300;
public static void main(String args[])
{
JFrame window = new JFrame();
window.setSize(WIDTH, HEIGHT);

JButton btnClick = new JButton("Click Me");
window.getContentPane().add(btnClick);

window.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
window.setVisible(true);
}
}
```

Computer Science & Information Technology

You might also like to view...

Class Number is ________ of both Integer and Double.

a. the subclass b. composed c. a descendent d. the superclass

Computer Science & Information Technology

Carefully define mutator and accessor functions of a class.

What will be an ideal response?

Computer Science & Information Technology

Which one of these interactions are NOT available in the SimController: geolocation, swipe, pinch, accelerometer, microphone?

What will be an ideal response?

Computer Science & Information Technology

Find unmatched queries provide a subset of the data that answers most questions that users ask about the data in their databases

Indicate whether the statement is true or false

Computer Science & Information Technology