返回列表 發帖

[隨堂測驗] 常用swing元件 - JFrame (二)

本帖最後由 許婷芳 於 2020-6-13 17:03 編輯



視窗一距離左上角(100,100), 大小(200,200)
視窗二與視窗三緊貼著視窗一,大小皆為(200,200)
視窗一關閉扭動作設為 EXIT_ON_CLOSE
視窗二與視窗三關閉扭動作皆設為 HIDE_ON_CLOSE
本帖隱藏的內容需要回復才可以瀏覽

  1. import javax.swing.JFrame;
  2. public class AA{
  3.         public static void main(String[] args) {
  4.         JFrame x=new JFrame("我的第一個視窗");
  5.         x.setBounds(100,100,200,200);
  6.         x.setVisible(true);
  7.         x.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE);
  8.         x.setResizable(true);
  9.         JFrame y=new JFrame("我的第二個視窗");
  10.         y.setBounds(300,100,200,200);
  11.         y.setVisible(true);
  12.         y.setDefaultCloseOperation( JFrame.HIDE_ON_CLOSE);
  13.         y.setResizable(true);
  14.         JFrame z=new JFrame("我的第三個視窗");
  15.         z.setBounds(500,100,200,200);
  16.         z.setVisible(true);
  17.         z.setDefaultCloseOperation( JFrame.HIDE_ON_CLOSE);
  18.         z.setResizable(true);
  19.     }
  20. }
複製代碼

TOP

本帖最後由 洪藜芸 於 2020-6-13 16:16 編輯
  1. import javax.swing.JFrame;
  2. public class advsbhsm {
  3.         public static void main(String[] args){
  4.                 JFrame a=new JFrame("視窗1");
  5.                 JFrame a2=new JFrame("視窗2");
  6.                 JFrame a3=new JFrame("視窗3");
  7.                 a.setBounds(100,100,200,200);
  8.                 a2.setBounds(300,100,200,200);
  9.                 a3.setBounds(500,100,200,200);
  10.                 a.setVisible(true);
  11.                 a.setResizable(false);
  12.                 a.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  13.                 a2.setVisible(true);
  14.                 a2.setResizable(false);
  15.                 a2.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
  16.                 a3.setVisible(true);
  17.                 a3.setResizable(false);
  18.                 a3.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
  19.         }
  20. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. public class aaa {
  3.         public static void main(String args[])
  4.         {
  5.                 JFrame x=new JFrame("視窗一");
  6.                 JFrame A=new JFrame("視窗二");
  7.                 JFrame B=new JFrame("視窗三");
  8.                 x.setBounds(100,100,200,200);
  9.                 x.setVisible(true);
  10.                 x.setResizable(false);
  11.                 x.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
  12.                 A.setBounds(200,100,200,200);
  13.                 A.setVisible(true);
  14.                 A.setResizable(false);
  15.                 A.setDefaultCloseOperation( JFrame. HIDE_ON_CLOSE);
  16.                 B.setBounds(300,100,200,200);
  17.                 B.setVisible(true);
  18.                 B.setResizable(false);
  19.                 B.setDefaultCloseOperation( JFrame. HIDE_ON_CLOSE);
  20.                
  21.         }
  22. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. public class ATB8 {

  3.         public static void main(String[] args) {
  4.         JFrame j=new JFrame("new joij;OUHSpiughsd");
  5.         JFrame a=new JFrame("new");
  6.         JFrame b=new JFrame("joij;OUHSpiughsd");
  7.         j.setBounds(100,100,200,200);
  8.         j.setVisible(true);
  9.         j.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  10.         a.setBounds(300,100,200,200);
  11.         a.setVisible(true);
  12.         a.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
  13.         b.setBounds(500,100,200,200);
  14.         b.setVisible(true);
  15.         b.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
  16.         }

  17. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. public class Ch01{
  3.         public static void main(String[] args) {
  4.         JFrame x=new JFrame("我的第一個視窗");
  5.         x.setBounds(100,100,200,200);
  6.         x.setVisible(true);
  7.         x.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE);
  8.         x.setResizable(true);
  9.         JFrame y=new JFrame("我的第二個視窗");
  10.         y.setBounds(300,100,200,200);
  11.         y.setVisible(true);
  12.         y.setDefaultCloseOperation( JFrame.HIDE_ON_CLOSE);
  13.         y.setResizable(true);
  14.         JFrame z=new JFrame("我的第三個視窗");
  15.         z.setBounds(500,100,200,200);
  16.         z.setVisible(true);
  17.         z.setDefaultCloseOperation( JFrame.HIDE_ON_CLOSE);
  18.         z.setResizable(true);
  19.     }
  20. }
複製代碼

TOP

  1. import javax.swing.*;
  2. public class AAA {

  3.         public static void main(String[] args)
  4.         {
  5.                 JFrame x=new JFrame("1111111");
  6.                 JFrame y=new JFrame("2222222");
  7.                 JFrame z=new JFrame("3333333");
  8.                 x.setBounds(100, 100,200, 100);
  9.                 x.setVisible(true);
  10.                 x.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  11.                 x.setResizable(false);
  12.                 y.setBounds(300, 100,200, 100);
  13.                 y.setVisible(true);
  14.                 y.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  15.                 y.setResizable(false);
  16.                 z.setBounds(500, 100,200, 100);
  17.                 z.setVisible(true);
  18.                 z.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  19.                 z.setResizable(false);
  20.         }
  21. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. public class Incredible {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法 Stub
  5.                 JFrame x=new JFrame("視窗1");
  6.                 JFrame y=new JFrame("視窗2");
  7.                 JFrame z=new JFrame("視窗3");
  8.                 x.setBounds(100,100,200,200);
  9.                 x.setVisible(true);
  10.                 x.setResizable(false);
  11.                 x.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );
  12.                 y.setBounds(300, 100, 200, 200);
  13.                 y.setVisible(true);
  14.                 y.setResizable(false);
  15.                 y.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE );
  16.                 z.setBounds(500, 100, 200, 200);
  17.                 z.setVisible(true);
  18.                 z.setResizable(false);
  19.                 z.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE );
  20.         }

  21. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. public class Incredible {

  3.         public static void main(String[] args) {
  4.                 JFrame x=new JFrame("視窗1");
  5.                 JFrame y=new JFrame("視窗2");
  6.                 JFrame z=new JFrame("視窗3");
  7.                 x.setBounds(100,100,200,200);
  8.                 x.setVisible(true);
  9.                 x.setResizable(false);
  10.                 x.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );
  11.                 y.setBounds(300, 100, 200, 200);
  12.                 y.setVisible(true);
  13.                 y.setResizable(false);
  14.                 y.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE );
  15.                 z.setBounds(500, 100, 200, 200);
  16.                 z.setVisible(true);
  17.                 z.setResizable(false);
  18.                 z.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE );
  19.         }
  20. }
複製代碼

TOP

  1. package zz;

  2. import javax.swing.JFrame;
  3. public class zz {

  4.         public static void main(String[] args) {
  5.                 JFrame x=new JFrame("我的第一個視窗");
  6.                 x.setBounds(100, 100, 250, 200);
  7.                 x.setVisible(true);
  8.                 x.setResizable(false);
  9.                 x.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  10.                 JFrame y=new JFrame("我的第一個視窗");
  11.                 y.setBounds(300, 100, 250, 200);
  12.                 y.setVisible(true);
  13.                 y.setResizable(false);
  14.                 y.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
  15.                 JFrame z=new JFrame("我的第一個視窗");
  16.                 z.setBounds(500, 100, 250, 200);
  17.                 z.setVisible(true);
  18.                 z.setResizable(false);
  19.                 z.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
  20.         }

  21. }
複製代碼

TOP

返回列表