Hallo,
Mein problem is das ich ne pinnwand am schreiben war nur leider mag mir das ding die postits nich zeichnen. Den hintergrund und die JLabel hingegen werden ohne meckern und murren gezeichnet und erneuert.
Ich weiß leider nich wieviel code nötig is um das ganze zu lösen aber ich geb mal das bedeutenste:
Mein problem is das ich ne pinnwand am schreiben war nur leider mag mir das ding die postits nich zeichnen. Den hintergrund und die JLabel hingegen werden ohne meckern und murren gezeichnet und erneuert.
Ich weiß leider nich wieviel code nötig is um das ganze zu lösen aber ich geb mal das bedeutenste:
Java:
@Override
protected void paintComponent(Graphics g)
{
super.paintComponent(g);
g.drawImage(background, 0, 0, this);
/*
*Div. Positions bestimmungen...
* background => Image von JPG File
* postitRohling => Image von JPG File
*/
g.drawImage(postitRohling, x, y, xWert, yWert, this);
JTextArea ta1 = new JTextArea("ID: " + p.getId());
ta1.setLineWrap(false);
ta1.setBackground(Color.yellow);
ta1.setSize(30, 20);
ta1.setLocation(x+5,y+1);
this.add(ta1);
JTextArea ta2 = new JTextArea(p.getText());
ta2.setLineWrap(true);
ta2.setBackground(Color.yellow);
ta2.setSize((xWert - 20), (yWert - 35));
ta2.setLocation((x + 10), (y + 23));
this.add(ta2);
}