0

当按下按钮时,我正在尝试向小程序窗格添加一个 JComponent(例如标签)。我有以下代码:

public class TestApplet extends JApplet
{
    @Override
    public void init()
    {
        setLayout(new FlowLayout());
        JButton bt = new JButton("hit it");
        bt.addActionListener(new ActionListener()
        {
            @Override
            public void actionPerformed(ActionEvent ae)
            {
                // getContentPane().setFont(null);
                getContentPane().add(new JLabel("to the right"));
            }
        });
        add(bt);
    }
}

这不会使标签可见,除非我取消注释getContentPane().setFont(null);

请告知我应该如何正确显示标签。提前致谢。

4

1 回答 1

2
getContentPane().add(new JLabel("to the right"));
this.revalidate();
于 2012-07-04T14:53:05.380 回答