0

我是新手,谁能帮我解决这个问题...

它没有显示我的“标签”,而是只显示“面板”类中的组件。

还有一个问题,任何人都可以向我解释一下 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());
        }
    }
}
4

2 回答 2

3

这是什么 ?:

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(您应该这样做),调用setSize/setBounds/setLocation是无用的(删除那些调用)。

还有几件事:

  • 如果您覆盖paintComponent,请确保调用super- 方法
  • 如果不需要,不要扩展JFrame(这里显然不需要)
  • 遵循 Java 命名约定(类名应以大写字母开头,变量和方法以小写字母开头)
  • 所有与 Swing 相关的代码都必须在 EDT 上调用。SwingUtilities.invokeLater()在一个块内启动您的 UI 。
于 2013-05-28T11:25:14.093 回答
1

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

mypanel.setLayout(new FlowLayout());
于 2013-05-28T11:19:21.143 回答