標題:
[隨堂練習]常用swing元件 - JFrame (二)
[打印本頁]
作者:
歐柏罕
時間:
2017-12-16 11:26
標題:
[隨堂練習]常用swing元件 - JFrame (二)
視窗一距離左上角(100,100), 大小(200,200)
視窗二與視窗三緊貼著視窗一,大小皆為(200,200)
視窗一關閉扭動作設為 EXIT_ON_CLOSE
視窗二與視窗三關閉扭動作皆設為 HIDE_ON_CLOSE
本帖隱藏的內容需要回復才可以瀏覽
作者:
黃茂勛
時間:
2017-12-16 11:33
本帖最後由 黃茂勛 於 2017-12-16 11:34 編輯
package ch01;
import javax.swing.JFrame;
public class ch01 {
public static void main(String[] args) {
JFrame fm1=new JFrame();
fm1.setTitle("視窗1");
JFrame fm2=new JFrame();
fm2.setTitle("視窗2");
JFrame fm3=new JFrame();
fm3.setTitle("視窗3");
fm1.setLocation(100, 100);
fm1.setSize(200,200);
fm2.setLocation(300, 100);
fm2.setSize(200,200);
fm3.setLocation(500, 100);
fm3.setSize(200,200);
fm1.setVisible(true);
fm1.setResizable(true);
fm1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm2.setVisible(true);
fm2.setResizable(true);
fm2.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
fm3.setVisible(true);
fm3.setResizable(true);
fm3.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}
複製代碼
作者:
張健勳
時間:
2017-12-16 11:34
import javax.swing.JFrame;
public class JF {
public static void main (String args[]) {
JFrame fm1 = new JFrame();
fm1.setTitle("視窗一");
fm1.setLocation(100, 100);
fm1.setSize(200, 200);
fm1.setVisible(false);
fm1.setResizable(true);
fm1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JFrame fm2 = new JFrame();
fm2.setTitle("視窗二");
fm2.setLocation(300, 100);
fm2.setSize(200, 200);
fm2.setVisible(false);
fm2.setResizable(true);
fm2.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
JFrame fm3 = new JFrame();
fm3.setTitle("視窗三");
fm3.setLocation(600, 100);
fm3.setSize(200, 200);
fm3.setVisible(false);
fm3.setResizable(true);
fm3.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}
複製代碼
作者:
蔡庭豪
時間:
2017-12-16 11:34
import javax.swing.JFrame;
public class Main {
public static void main(String[] args) {
JFrame jf1 = new JFrame ();
jf1.setTitle("視窗一");
jf1.setLocation(100,100);
jf1.setSize(200,200);
jf1.setVisible(true);
jf1.setResizable(false);
jf1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JFrame jf2 = new JFrame ();
jf2.setTitle("視窗二");
jf2.setLocation(300,100);
jf2.setSize(200,200);
jf2.setVisible(true);
jf2.setResizable(false);
jf2.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
JFrame jf3 = new JFrame ();
jf3.setTitle("視窗三");
jf3.setLocation(500,100);
jf3.setSize(200,200);
jf3.setVisible(true);
jf3.setResizable(false);
jf3.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}
複製代碼
作者:
蔡季樺
時間:
2017-12-16 11:34
import javax.swing.JFrame;
public class Main {
public static void main(String args[])
{
JFrame fm = new JFrame();
JFrame fm2 = new JFrame();
JFrame fm3 = new JFrame();
fm.setTitle("視窗一");
fm.setLocation(100,100);
fm.setSize(200,200);
fm.setVisible(true);
fm.setResizable(false);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm2.setTitle("視窗二");
fm2.setLocation(300,100);
fm2.setSize(200,200);
fm2.setVisible(true);
fm2.setResizable(false);
fm2.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
fm3.setTitle("視窗三");
fm3.setLocation(500,100);
fm3.setSize(200,200);
fm3.setVisible(true);
fm3.setResizable(false);
fm3.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}
複製代碼
作者:
陳泓瑜
時間:
2017-12-16 11:41
import javax.swing.JFrame;
public class NCh002
{
public static void main(String[] args)
{
JFrame fm1=new JFrame("視窗一");
JFrame fm2=new JFrame("視窗二");
JFrame fm3=new JFrame("視窗三");
fm1.setLocation(100, 100);
fm1.setSize(200, 200);
fm2.setLocation(300, 100);
fm2.setSize(200, 200);
fm3.setLocation(500, 100);
fm3.setSize(200, 200);
fm1.setVisible(true);
fm1.setResizable(true);
fm2.setVisible(true);
fm2.setResizable(true);
fm3.setVisible(true);
fm3.setResizable(true);
fm1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm2.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
fm3.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}
複製代碼
作者:
林侑成
時間:
2017-12-25 18:09
import javax.swing.JFrame;
public class CH76
{
public static void main(String[] args)
{
JFrame fm1= new JFrame("視窗一");
fm1.setLocation(100, 100);
fm1.setSize(200, 200);
fm1.setVisible(true);
fm1.setResizable(false);
fm1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JFrame fm2= new JFrame("視窗二");
fm2.setLocation(300, 100);
fm2.setSize(200, 200);
fm2.setVisible(true);
fm2.setResizable(false);
fm2.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
JFrame fm3= new JFrame("視窗三");
fm3.setLocation(500, 100);
fm3.setSize(200, 200);
fm3.setVisible(true);
fm3.setResizable(false);
fm3.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2