繁体   English   中英

为什么我的组件不可见?

[英]Why are my components invisible?

这是我使用swing创建窗口的代码。

我可以看到定义大小的窗口,但是该窗口中没有任何组件。

为什么这些组件不可见?

我有用于创建,初始化和添加组件的单独方法。 这些方法从构造函数中调用。 具有标题和已定义大小的窗口在输出中可见。 我想念什么?

package swing_basics;

import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;

public class MySwingDemo extends JFrame {

    JLabel lblName, lblPassword; //Declaration of variables
    JTextField txtfName;
    JPasswordField pwdfPassword;
    JButton btnSubmit, btnCancel, btnReset;

    public void createComponents(){  //method to initialise the components

        lblName = new JLabel();
        lblPassword = new JLabel();
        txtfName = new JTextField();
        pwdfPassword = new JPasswordField();
        btnSubmit = new JButton();
        btnCancel = new JButton();
        btnReset = new JButton();
    }

    public void setComponents(){  //method to set the components
        setVisible(true);
        setSize(400, 400);
        setTitle("My Swing Demo");
        setLayout(new FlowLayout());

        lblName.setText("Name");
        lblPassword.setText("Password");

        txtfName.setText("Name");// try

        pwdfPassword.setText("Password");

        btnSubmit.setText("Submit");
        btnCancel.setText("Cancel");
        btnReset.setText("Reset");
    }

    public void addComponents(JFrame frame){  //method to add the components
        frame.add(lblName);
        frame.add(txtfName);

        frame.add(lblPassword);
        frame.add(pwdfPassword);

        frame.add(btnSubmit);
        frame.add(btnCancel);
        frame.add(btnReset);
    }

    public static void main(String[] args) {
        new MySwingDemo();
    }

    public MySwingDemo() {  //Constructor
        createComponents();
        setComponents();
        addComponents(this);
    }

}

这是操作的顺序,您要在添加(和设置)组件之前将frame设置为可见。 而是移动setVisible(true); 你必须设置你的组件 并且 ,请确保您调用addComponents(this); 调用setComponents();

喜欢

public MySwingDemo() { // Constructor
    createComponents();
    addComponents(this);
    setComponents();
}

并且我还将添加默认的frame关闭操作

public void setComponents() { // method to set the components
    setSize(400, 400);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    setTitle("My Swing Demo");
    setLayout(new FlowLayout());

    lblName.setText("Name");
    lblPassword.setText("Password");

    txtfName.setText("Name");// try

    pwdfPassword.setText("Password");

    btnSubmit.setText("Submit");
    btnCancel.setText("Cancel");
    btnReset.setText("Reset");
    setVisible(true);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM