我从调色板创建了一个JFrame Class
并Netbeans 7.3
添加了两个面板。我在第一个面板中添加了一个按钮,单击该按钮我想在第二个面板(topoPane)中添加一个新按钮。
下面是我为此编写的按钮单击事件。但是,即使调用事件,按钮也不会添加到面板中。请告诉我它有什么问题。
private void jButton1MouseClicked(java.awt.event.MouseEvent evt)
{
// TODO add your handling code here:
System.out.println("Creating the Button");
JButton but = new JButton();
but.setBackground(Color.red);
but.setText("New Button");
but.setBounds(500, 500, 500, 500);
topoPane.add(but);
topoPane.revalidate();
}