lundi 4 mai 2015
Swing Farbige JPanels auf JFrame werden nicht gezeigt. Was mach ich falsch?
Posted on 07:43 by verona
Hallo
Ich möchte "selbstgemachte" farbige JPanels auf JFrames bringen, aber sie werden nicht angezeigt...
Hier die JPanels:
Hier die aufrufende Klasse:
Ich möchte "selbstgemachte" farbige JPanels auf JFrames bringen, aber sie werden nicht angezeigt...
Hier die JPanels:
Java Code:
-
-
import javax.swing.*;
-
import java.awt.*;
-
-
@SuppressWarnings("serial")
-
{
-
int x;
-
int y;
-
int height;
-
int width;
-
Color color;
-
-
{
-
this.x = x;
-
this.y = y;
-
this.width = width;
-
this.height = height;
-
this.color = color;
-
}
-
-
@Override
-
{
-
super.paintComponent( g );
-
-
g.setColor( this.color );
-
g.fillRect( x, y, width, height );
-
g.drawRect( x, y, width, height );
-
}
-
-
}
Hier die aufrufende Klasse:
Java Code:
-
-
import java.awt.Color;
-
import javax.swing.JFrame;
-
-
public class Test
-
{
-
{
-
RGBField red = new RGBField( 10, 10, 100, 100, redColor );
-
RGBField blue = new RGBField( 120, 10, 100, 100, blueColor );
-
-
frame.setSize( 500, 500);
-
frame.add( red );
-
frame.add( blue );
-
frame.setVisible( true );
-
-
-
}
-
-
}
Swing Farbige JPanels auf JFrame werden nicht gezeigt. Was mach ich falsch?
Inscription à :
Publier les commentaires (Atom)
0 commentaires:
Enregistrer un commentaire