1. 程式人生 > >JAVA GUI學習記錄

JAVA GUI學習記錄

1.基本介面

import java.awt.*;
import java.awt.event.*;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JLabel;

public class GUI 
{	
	public static void main(String[] args) 
	{
    	JFrame basic_frame= new JFrame();//frame視窗
		Panel basic_panel=new Panel();//panel面板
		basic_frame.add(basic_panel);
		Color c_background=new Color(255,255,205);//設定顏色
		basic_panel.setBackground(c_background);//將顏色設定為面板顏色(背景顏色)
		Color c_button0=new Color(0x66ccff);
		basic_panel.setLayout(null);//佈局型別
		basic_frame.setBounds(256,256,512,288);//視窗相關設定
		basic_frame.setVisible(true);
		basic_frame.validate();

		Button button0=new Button("nanijibamono");//button按鍵
		button0.setBounds(208,96,90,25);//設定按鍵位置以及大小
		button0.setBackground(c_button0);//設定按鍵顏色
		button0.addActionListener(button0_behavour);//按鍵事件監聽
		basic_panel.add(button0);//在面板中加入按鍵
		
		Choice choice0=new Choice();//設定下拉選項
		choice0.setBounds(208,144,60,20);
		choice0.add("wly");
		choice0.add("wly~");
		basic_panel.add(choice0);//新增按鈕

        basic_frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//關閉
    }
}

2.事件監聽


	public static class Monitor implements ActionListener//按鍵按下,如果choice為0則開啟新視窗
	{
		public void actionPerformed(ActionEvent e)
		{
			JFrame frame0=new JFrame();
			Panel panel0=new Panel();
			frame0.add(panel0);
			JLabel label00=new JLabel("什麼X東西",JLabel.CENTER);
			frame0.add(label00);
			frame0.setBounds(256,256,128,64);
			if(tempnum==0)
			{
				frame0.setVisible(true);
			}
		}
	}

		choice0.addItemListener(new ItemListener()//選項改變時得到選項的值
		{
			public void itemStateChanged(ItemEvent e)
			{
				tempnum=choice0.getSelectedIndex();
			}
		});
		

效果: