2011-02-17 55 views
0

我在我的Gui Builder JFram类A中使用Custome jPanel,我面临的问题是当我单击JFrame中的按钮时更新我的​​JPanel中的组件(Lable)。其中有Gui生成器JFrame ClassA:它会更改Jpl的颜色并删除所有标签但不更新新标签。java更新Jpanel组件

private void btnShowActionPerformed(java.awt.event.ActionEvent evt) { 
    // TODO add your handling code here: 

      Random randomGenerator = new Random(); 
      for (int idx = 1; idx <= 10; ++idx) { 
       q = randomGenerator.nextInt(100); 
      } 
      jpl1.removeAll(); 
      new Jpl().printMe(ClassA.q); 
      jpl1.revalidate(); 
      jpl1.setBackground(Color.BLUE); 
      jpl1.repaint(); 
} 

这里是用作GuiBuilder JFrame类A.

public class Jpl extends JPanel { 

public Jpl() { 
    printMe(ClassA.q); 
} 


public void printMe(int q) { 

    for (int i = 0; i <q; i++) { 
     System.out.println(i+"rinting lable"); 
     String htmlLabel = "<html><font color=\"#A01070\">" + i + " New Lable </font></html>"; 
     JLabel lbl = new JLabel(htmlLabel); 
     setLayout(new GridLayout(0, 1)); 
     add(lbl, Jpl.RIGHT_ALIGNMENT); 
     lbl.setForeground(Color.BLUE); 
     Border border = BorderFactory.createLineBorder(Color.lightGray); 
     lbl.setBorder(border); 
     lbl.add(new JSeparator(SwingConstants.HORIZONTAL)); 

     lbl.addMouseListener(new MouseAdapter() { 

      @Override 
      public void mousePressed(MouseEvent e) { 
       JLabel label = (JLabel) e.getSource(); 
       JOptionPane.showMessageDialog(null, "You Slected"); 
       System.out.println(label.getText() + "NO AKKA is Selected"); 
      } 
     }); 
    } 

} 

回答

1

您是在喷气推进实验室的一个新实例调用printMe()的是定制组件JPL类,尝试:

private void btnShowActionPerformed(java.awt.event.ActionEvent evt) { 
    // TODO add your handling code here: 

      Random randomGenerator = new Random(); 
      for (int idx = 1; idx <= 10; ++idx) { 
       q = randomGenerator.nextInt(100); 
      } 
      jpl1.removeAll(); 
      jpl1.printMe(ClassA.q); // HERE - REMOVED new and using jpl1 instance 
      jpl1.setBackground(Color.BLUE); 
      jpl1.revalidate(); 
      jpl1.repaint(); 
} 

在不明白你为什么循环10次你的随机数。只有最后的结果将被保留,也许你想使用q += randomGenerator.nextInt(100);。另外,ClassA.q应该被替换为q,如果它是相同的变量。

+0

非常非常感谢你完全解决了我的问题。 – 2011-02-17 19:39:34