private void btnActionPerformed(java.awt.event.ActionEvent evt) {
btn.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
JLabel label=new JLabel("test label");
label.setBounds(0,0,135,14);
panel.add(label);
panel.repaint();
}
});
}
我想在面板中的特定位置添加每个标签,例如向表中添加记录(假设表有4列)。如何实现这一目标。