文字框和標籤

託帕發表於2018-09-07

import java.awt.*;
import javax.swing.*;

public class Test extends JFrame{//把需要的元件全部在這裡定義
	
	JPanel mb1,mb2,mb3;
	JButton an1,an2;
	JLabel bq1,bq2;
	JTextField wbk;
	JPasswordField mmk; 
	
	public static void main(String[] args){
		Test lx=new Test();
	}

public Test(){
	
	    mb1=new JPanel();
	    mb2=new JPanel();
	    mb3=new JPanel();
	     
		bq1=new JLabel("使用者名稱");
		bq2=new JLabel("密    碼");
		an1=new JButton("登入");
		an2=new JButton("取消");
		wbk=new JTextField(10);
		mmk=new JPasswordField(10);
		
		this.setLayout(new GridLayout(3,1));
		
		mb1.add(bq1);
		mb1.add(wbk);
		mb2.add(bq2);
		mb2.add(mmk);
		mb3.add(an1);
		mb3.add(an2);
		
		this.add(mb1);
		this.add(mb2);
		this.add(mb3);
				
		this.setTitle("使用者登入");
		this.setSize(330,190);
		this.setLocation(350,280);
		this.setResizable(false);
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		this.setVisible(true);
	}
}

相關文章