Wie ändert man die Farbe eines Rechtecks? Ich möchte es in gelbe Farbe ändern. Ich fügte g.setColor(Color.YELLOW);
innerhalb hinzu, aber die Farbe des Rechtecks bleibt noch immer gleich. Kann mir jemand sagen, was ich falsch gemacht habe?Rechteckfarbe in Java GUI ändern
public class SelectSeat {
static JFrame frame;
public JPanel createContentPane() throws IOException
{
JPanel totalGUI = new JPanel();
RectDraw rect= new RectDraw();
rect.setPreferredSize(new Dimension(330,35)); //for size
totalGUI.setLayout(null);
totalGUI.setBackground(Color.WHITE);
totalGUI.add(rect);
Dimension d = rect.getPreferredSize();
rect.setBounds(100, 20, d.width, d.height); // for location
return totalGUI;
}
void setVisible(boolean b) {
// TODO Auto-generated method stub
}
static void createAndShowGUI() throws IOException
{
JFrame.setDefaultLookAndFeelDecorated(true);
frame = new JFrame("Seat Selection");
//Create and set up the content pane.
SelectSeat demo = new SelectSeat();
frame.setContentPane(demo.createContentPane());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(535, 520);
frame.setLocation(500,220);
frame.setVisible(true);
}
private static class RectDraw extends JPanel
{
protected void paintComponent(Graphics g) {
super.paintComponent(g);
g.setColor(Color.BLUE);
g.drawString("Movie Sceen", 130, 20);
}
}
}
'Ich habe g.setColor (Color.YELLOW) hinzugefügt;' Ich sehe diesen Aufruf nicht im gebuchten Code. Füllen Sie ein Rechteck nach dem Anruf? – copeg