I have a problem adding graphics to JPanel. If I changed the line from the .add panel (new graphics ()); to frame.add (new graphics ()); and donβt add a JPanel to the JFrame, a black rectangle appears on the JFrame. I just can't get the black rectangle to appear on JPannel and wondered if anyone could help me with this.
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Catch{ public class graphics extends JComponent{ public void paintComponent(Graphics g){ super.paintComponents(g); g.fillRect(200, 62, 30, 10); } } public void createGUI(){ final JFrame frame = new JFrame(); JPanel panel = new JPanel(); frame.setSize(500,500); frame.addMouseListener(new MouseAdapter(){ public void mouseClicked(MouseEvent e) { System.out.println(e.getPoint().getX()); System.out.println(e.getPoint().getY()); } }); panel.add(new graphics()); frame.add(panel); frame.setVisible(true); frame.setDefaultCloseOperation(frame.DISPOSE_ON_CLOSE); } public static void main(String[] args){ Catch GUI= new Catch(); GUI.createGUI(); } }
source share