我创建了一个覆盖它的标签paintComponent
(用弧线以不同的格式绘制它)并将它们定位在面板上。一切正常,但是位于同一位置(by .setlocation
)的标签正在产生问题。
假设我在同一位置有 3 个不同形状的标签。首先创建ABC A,然后创建B,最后创建c。当我单击 A 时,我的函数会绘制 A 并显示“您已单击 A”
但是当我点击 B 或 C 时,它就像我点击了 A。
(我在滚动窗格中堆叠的面板中添加标签)
这是我制作标签的代码
for(int i=0;i<rowcount;i++){
arcstart = Rawazimuth(azimuth[i]);
//custom JLabel to paint it like an arc
MyLabel FLabel = new MyLabel(100, 50, (int)arcstart,cellid[i],lon[i],lat[i]);
FLabel.setOpaque(true);
Dimension LabelSize = new Dimension( 100,50);
FLabel.setSize(LabelSize);
//locate the JLabel to labels location. it might be same or not
FLabel.setLocation(lon[i], lat[i]);
MyPanel.add(FLabel);
}
这是我的自定义 jlabel 类
public MyLabel(int W, int H, int start,int outcellid,int lonn, int latt) {
addMouseListener(this);
arcsizeW = W;
arcsizeH = H;
arcstart = start;
cellid = outcellid;
clicked = false;
lon = lonn;
lat = latt;
}
@Override
public void paintComponent(Graphics g){
// true if button is clicked, so paint acordingly
if(clicked ==true){
g.setColor(dummyg.getColor());
}else{
g.setColor(Color.blue);
}
// draw the arc
g.fillArc(0, 0,arcsizeW , arcsizeH, arcstart, 60);
}
//if cell is clicked, change its color to red and print its cellid
@Override
public void mouseClicked(MouseEvent e) {
System.out.println(cellid);
dummyg = this.getGraphics();
dummyg.setColor(Color.red);
this.paintComponent(dummyg);
clicked = true;
}// other listener stuff}
那么我该如何预防呢?我想我可以使用 jlayerpane,但我至少需要 4 层(不知道是否可以)。