長方形を作成しました。これに1つのJLabelを配置する必要があります。では、どうすればJLabelを長方形の中に入れることができますか。
ここにコード:-
public class ColoredRect extends JPanel
{
private double x, y, width, height;
public ColoredRect(double x,double y)
{
this.x = x;
this.y = y;
width = 100;
height =40;
rect = new Rectangle2D.Double(this.x , this.y,width,height);
}
public void paintComponent(Graphics g)
{
super.paintComponent(g);
Graphics2D g2 = (Graphics2D) g;
g2.setColor(Color.cyan);
g2.fill(rect);
}
}
これを実装するためのアイデアを教えてください。
前もって感謝します。