为什么没有显示我的标签



我是新手,有人能帮我一下吗?

它没有显示我的"label",而是只显示"panel"类中的组件。

还有一个问题,谁能给我解释一下LayoutManagers ?可以在一个框架中使用2个或更多的layoutmanager吗?比如对于框架,我将使用FlowLayout,我有一个JPanel添加到框架中,我将使用BoxLayout…这首先是可能的吗?
import javax.swing.*;
import java.awt.event.*;
import java.awt.Graphics;
public class JForm1 extends JFrame
{
    public JForm1()
    {
        init();
    }
    public static void main(String[] args) 
    {
        JForm1 form = new JForm1();
    }
    public void init()
    {
        JFrame frame = new JFrame("My Form 1");
        frame.setSize(500,500);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        getContentPane().setLayout(new BoxLayout(this,BoxLayout.PAGE_AXIS));
        JLabel label = new JLabel("Enter your Name : ");
        panel MyPanel = new panel();
        frame.getContentPane().add(label);
        frame.getContentPane().add(MyPanel);
        frame.setVisible(true);
    }
}
class panel extends JPanel implements ActionListener
{
    JButton submitButton;
    JTextField text;
    panel()
    {
        this.setLayout(new BoxLayout(this,BoxLayout.Y_AXIS));
    }
    public void paintComponent(Graphics g)
    {
        text = new JTextField("Enter Name here");
        text.setSize(100,25);
        submitButton = new JButton("Submit");
        submitButton.setSize(50,90);
        submitButton.setBounds(200, 0, 80, 80);
        submitButton.addActionListener(this);
        this.add(text);
        this.add(submitButton);
    }
    public void actionPerformed(ActionEvent event)
    {
        if(event.getSource()==submitButton)
        {
            System.out.println("The Entered Name is : "+text.getText());
        }
    }
}

这是什么?:

public void paintComponent(Graphics g)
{
    text = new JTextField("Enter Name here");
    text.setSize(100,25);
    submitButton = new JButton("Submit");
    submitButton.setSize(50,90);
    submitButton.setBounds(200, 0, 80, 80);
    submitButton.addActionListener(this);
    this.add(text);
    this.add(submitButton);
}

此代码与paintComponent无关。paintComponent是关于"画一个组件",即,画一个矩形,画一条线,填充一个椭圆形,等等…这绝对不是添加组件的地方。相反,在构造函数中调用该代码。

另外,如果你正在使用LayoutManager's(你应该),调用setSize/setBounds/setLocation是无用的(请删除这些调用)。

更多内容:

  • 如果您覆盖paintComponent,请确保调用super方法
  • 如果不需要,不要扩展JFrame(这里显然不需要)
  • 遵循Java命名约定(类名以大写字母开头,变量和方法以小写字母开头)
  • 所有swing相关的代码必须在EDT上调用。在SwingUtilities.invokeLater()块中启动UI

尝试将mypanel的布局更改为FlowLayout。

mypanel.setLayout(new FlowLayout());

相关内容

  • 没有找到相关文章

最新更新