標題:
[隨堂測驗] 常用swing元件 - JFrame (二)
[打印本頁]
作者:
許婷芳
時間:
2020-6-13 16:08
標題:
[隨堂測驗] 常用swing元件 - JFrame (二)
本帖最後由 許婷芳 於 2020-6-13 17:03 編輯
視窗一距離左上角(100,100), 大小(200,200)
視窗二與視窗三緊貼著視窗一,大小皆為(200,200)
視窗一關閉扭動作設為 EXIT_ON_CLOSE
視窗二與視窗三關閉扭動作皆設為 HIDE_ON_CLOSE
本帖隱藏的內容需要回復才可以瀏覽
作者:
洪子涵
時間:
2020-6-13 16:13
import javax.swing.JFrame;
public class AA{
public static void main(String[] args) {
JFrame x=new JFrame("我的第一個視窗");
x.setBounds(100,100,200,200);
x.setVisible(true);
x.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE);
x.setResizable(true);
JFrame y=new JFrame("我的第二個視窗");
y.setBounds(300,100,200,200);
y.setVisible(true);
y.setDefaultCloseOperation( JFrame.HIDE_ON_CLOSE);
y.setResizable(true);
JFrame z=new JFrame("我的第三個視窗");
z.setBounds(500,100,200,200);
z.setVisible(true);
z.setDefaultCloseOperation( JFrame.HIDE_ON_CLOSE);
z.setResizable(true);
}
}
複製代碼
作者:
洪藜芸
時間:
2020-6-13 16:14
本帖最後由 洪藜芸 於 2020-6-13 16:16 編輯
import javax.swing.JFrame;
public class advsbhsm {
public static void main(String[] args){
JFrame a=new JFrame("視窗1");
JFrame a2=new JFrame("視窗2");
JFrame a3=new JFrame("視窗3");
a.setBounds(100,100,200,200);
a2.setBounds(300,100,200,200);
a3.setBounds(500,100,200,200);
a.setVisible(true);
a.setResizable(false);
a.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
a2.setVisible(true);
a2.setResizable(false);
a2.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
a3.setVisible(true);
a3.setResizable(false);
a3.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}
複製代碼
作者:
陳柏霖
時間:
2020-6-13 16:16
import javax.swing.JFrame;
public class aaa {
public static void main(String args[])
{
JFrame x=new JFrame("視窗一");
JFrame A=new JFrame("視窗二");
JFrame B=new JFrame("視窗三");
x.setBounds(100,100,200,200);
x.setVisible(true);
x.setResizable(false);
x.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
A.setBounds(200,100,200,200);
A.setVisible(true);
A.setResizable(false);
A.setDefaultCloseOperation( JFrame. HIDE_ON_CLOSE);
B.setBounds(300,100,200,200);
B.setVisible(true);
B.setResizable(false);
B.setDefaultCloseOperation( JFrame. HIDE_ON_CLOSE);
}
}
複製代碼
作者:
陳柏銓
時間:
2020-6-13 16:26
import javax.swing.JFrame;
public class ATB8 {
public static void main(String[] args) {
JFrame j=new JFrame("new joij;OUHSpiughsd");
JFrame a=new JFrame("new");
JFrame b=new JFrame("joij;OUHSpiughsd");
j.setBounds(100,100,200,200);
j.setVisible(true);
j.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
a.setBounds(300,100,200,200);
a.setVisible(true);
a.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
b.setBounds(500,100,200,200);
b.setVisible(true);
b.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}
複製代碼
作者:
陳智鈞
時間:
2020-6-13 16:27
import javax.swing.JFrame;
public class Ch01{
public static void main(String[] args) {
JFrame x=new JFrame("我的第一個視窗");
x.setBounds(100,100,200,200);
x.setVisible(true);
x.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE);
x.setResizable(true);
JFrame y=new JFrame("我的第二個視窗");
y.setBounds(300,100,200,200);
y.setVisible(true);
y.setDefaultCloseOperation( JFrame.HIDE_ON_CLOSE);
y.setResizable(true);
JFrame z=new JFrame("我的第三個視窗");
z.setBounds(500,100,200,200);
z.setVisible(true);
z.setDefaultCloseOperation( JFrame.HIDE_ON_CLOSE);
z.setResizable(true);
}
}
複製代碼
作者:
宋威廷
時間:
2020-6-13 16:27
import javax.swing.*;
public class AAA {
public static void main(String[] args)
{
JFrame x=new JFrame("1111111");
JFrame y=new JFrame("2222222");
JFrame z=new JFrame("3333333");
x.setBounds(100, 100,200, 100);
x.setVisible(true);
x.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
x.setResizable(false);
y.setBounds(300, 100,200, 100);
y.setVisible(true);
y.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
y.setResizable(false);
z.setBounds(500, 100,200, 100);
z.setVisible(true);
z.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
z.setResizable(false);
}
}
複製代碼
作者:
蔡依宸
時間:
2020-6-13 16:29
import javax.swing.JFrame;
public class Incredible {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
JFrame x=new JFrame("視窗1");
JFrame y=new JFrame("視窗2");
JFrame z=new JFrame("視窗3");
x.setBounds(100,100,200,200);
x.setVisible(true);
x.setResizable(false);
x.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );
y.setBounds(300, 100, 200, 200);
y.setVisible(true);
y.setResizable(false);
y.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE );
z.setBounds(500, 100, 200, 200);
z.setVisible(true);
z.setResizable(false);
z.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE );
}
}
複製代碼
作者:
戴偉宸
時間:
2020-6-13 16:51
import javax.swing.JFrame;
public class Incredible {
public static void main(String[] args) {
JFrame x=new JFrame("視窗1");
JFrame y=new JFrame("視窗2");
JFrame z=new JFrame("視窗3");
x.setBounds(100,100,200,200);
x.setVisible(true);
x.setResizable(false);
x.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );
y.setBounds(300, 100, 200, 200);
y.setVisible(true);
y.setResizable(false);
y.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE );
z.setBounds(500, 100, 200, 200);
z.setVisible(true);
z.setResizable(false);
z.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE );
}
}
複製代碼
作者:
蔡季庭
時間:
2020-6-13 16:58
package zz;
import javax.swing.JFrame;
public class zz {
public static void main(String[] args) {
JFrame x=new JFrame("我的第一個視窗");
x.setBounds(100, 100, 250, 200);
x.setVisible(true);
x.setResizable(false);
x.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JFrame y=new JFrame("我的第一個視窗");
y.setBounds(300, 100, 250, 200);
y.setVisible(true);
y.setResizable(false);
y.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
JFrame z=new JFrame("我的第一個視窗");
z.setBounds(500, 100, 250, 200);
z.setVisible(true);
z.setResizable(false);
z.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2