首页 > 编程语言 >GUI编程(Swing_01)

GUI编程(Swing_01)

时间:2022-11-14 19:44:42浏览次数:45  
标签:01 container import GUI add void Swing new public

GUI编程

Swing

1.窗口、面板

package com.deng.lesson04;

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

public class JFrameDemo {

    //init();初始化
    public void init() {
        //顶级窗口
        JFrame jf = new JFrame("这是一个JFrame窗口");
        jf.setVisible(true);
        jf.setBounds(100, 100, 200, 200);
        jf.setBackground(Color.cyan);
        //设置文字JLabel
        JLabel label = new JLabel("你好");

        jf.add(label);

        //关闭事件
        jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }

    public static void main(String[] args) {
        //建立一个窗口
        new JFrameDemo().init();
    }
}

标签居中

package com.deng.lesson04;

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

public class JFrameDemo02 {
    public static void main(String[] args) {
        new MyJFrame02().init();
    }
}
class MyJFrame02 extends JFrame{
    public void init(){
        this.setBounds(10,10,200,300);
        this.setVisible(true);

        JLabel label = new JLabel("你好");
        this.add(label);

        //让文本标签居中 设置水平对齐
        label.setHorizontalAlignment(SwingConstants.CENTER);

        //获得一个容器
        Container container = this.getContentPane();
        container.setBackground(Color.YELLOW);
    }
}

2.弹窗

package com.deng.lesson04;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

//主窗口
public class DialogDemo extends JFrame {
    public DialogDemo() {
        this.setVisible(true);
        this.setSize(700, 500);
        this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

        //JFrame 放东西,容器
        Container container = this.getContentPane();
        //绝对布局
        container.setLayout(null);

        //按钮
        JButton button = new JButton("点击弹出一个对话框");//创建
        button.setBounds(30,30,200,50);

        //点击这个按钮的时候,弹出一个弹窗
        button.addActionListener(new ActionListener() {//监听器
            @Override
            public void actionPerformed(ActionEvent e) {
                //弹窗
                new MyDialogDemo();
            }
        });
        container.add(button);
    }

    public static void main(String[] args) {
        new DialogDemo();
    }
}

//弹窗的窗口
class MyDialogDemo extends JDialog{
    public MyDialogDemo(){
        this.setVisible(true);
        this.setBounds(100,100,500,500);

        Container container = this.getContentPane();
        container.setLayout(null);

        container.add(new Label("我在学Java"));
    }
}

3.标签

label

new JLabel("xxx");

图标ICON

package com.deng.lesson04;

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

//图标,需要实现类,Frame继承
public class IconDemo extends JFrame implements Icon {
    private int width;
    private int height;

    public  IconDemo(){} //无参构造
    public IconDemo(int width,int height){
        this.width=width;
        this.height=height;
    }
    public  void init(){
        IconDemo iconDemo = new IconDemo(15,15);
        //图标放在标签,也可以放在按钮上
        JLabel label = new JLabel("icontest", iconDemo, SwingConstants.CENTER);

        Container container = getContentPane();
        container.add(label);

        this.setVisible(true);
        this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }

    public static void main(String[] args) {
        new  IconDemo().init();
    }

    @Override
    public void paintIcon(Component c, Graphics g, int x, int y) {
        g.fillOval(x,y,width,height);
    }

    @Override
    public int getIconWidth() {
        return 0;
    }

    @Override
    public int getIconHeight() {
        return 0;
    }
}

图片Icon

package com.deng.lesson04;

import sun.text.normalizer.UTF16;

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

public class ImageIconDemo extends JFrame {

    public ImageIconDemo(){
        //获取图片的地址
        JLabel label = new JLabel("ImageIcon");
        URL url = ImageIconDemo.class.getResource("1.jpg");

        ImageIcon imageIcon = new ImageIcon(url);
        label.setIcon(imageIcon);
        label.setHorizontalAlignment(SwingConstants.CENTER);

        Container container = getContentPane();
        container.add(label);

        setVisible(true);
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        setBounds(100,100,200,200);
    }

    public static void main(String[] args) {
        new ImageIconDemo();
    }
}

4.面板

package com.deng.lesson05;

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

public class JPanelDemo extends JFrame {

    public JPanelDemo(){
        Container container = this.getContentPane();
        container.setLayout(new GridLayout(2,1,10,10));//后面两个参数:间距

        JPanel panel1=new JPanel(new GridLayout(1,3));
        JPanel panel2=new JPanel(new GridLayout(1,2));
        JPanel panel3=new JPanel(new GridLayout(2,1));
        //JPanel panel4=new JPanel(new GridLayout(3,2));

        panel1.add(new JButton("1"));
        panel1.add(new JButton("1"));
        panel1.add(new JButton("1"));
        panel2.add(new JButton("2"));
        panel2.add(new JButton("2"));
        panel3.add(new JButton("3"));
        panel3.add(new JButton("3"));

        container.add(panel1);
        container.add(panel2);
        container.add(panel3);

        this.setVisible(true);
        this.setSize(500,500);
        this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }

    public static void main(String[] args) {
        new JPanelDemo();
    }
}

JScrollPanel

package com.deng.lesson05;

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

public class JScrollDemo extends JFrame {
    public  JScrollDemo(){
        Container container = this.getContentPane();

        //文本域
        JTextArea textArea = new JTextArea(20, 50);
        textArea.setText("你好!");

        //Scroll面板
        JScrollPane scrollPane = new JScrollPane(textArea);
        container.add(scrollPane);

        this.setVisible(true);
        this.setBounds(100,300,300,350);
        this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }

    public static void main(String[] args) {
        new JScrollDemo();
    }
}

标签:01,container,import,GUI,add,void,Swing,new,public
From: https://www.cnblogs.com/dengovo/p/16890136.html

相关文章

  • 32001107郑杰
    步不停_第2组_设计报告 步不停设计报告本次亮点墨刀原型连接:https://modao.cc/app/w7VfSnUcrjzpb3UqVO4VFy#步不停-分享 注:打开后需要加载一分钟UI设计(部分),如下......
  • 11-Go语言进阶-01
    包的使用引入时,用.做前缀,使用时可以省略包名,不建议这么使用可以前缀别名"_"下划线操作,可以执行包里面对应的init函数首字母大写的字段和实体,才能被外部引用init函数......
  • 乘风破浪,遇见新一代工业互联网(Industrial Internet)之工业机器人赛道,自2017年以来,中
    工业机器人工业机器人是先进制造业的关键支撑设备,是一个国家成为制造业强国的基础。而全球工业机器人的市场长期由日本和欧洲公司主导,如瑞士ABB,德国KUKA,日本川崎重工等行......
  • ASEMI肖特基二极管SBT20100VDC特征,SBT20100VDC应用
    编辑-ZASEMI肖特基二极管SBT20100VDC参数:型号:SBT20100VDC最大重复峰值反向电压(VRRM):100V最大平均正向整流输出电流(IF):20A峰值正向浪涌电流(IFSM):180A每个元件的典型热阻(R......
  • SBT10100VDC-ASEMI低压降贴片肖特基二极管SBT10100VDC
    编辑-ZSBT10100VDC在TO-263封装里采用的2个芯片,其尺寸都是62MIL,是一款低压降贴片肖特基二极管。SBT10100VDC的浪涌电流Ifsm为150A,漏电流(Ir)为4uA,其工作时耐温度范围为-65......
  • 米联客MLK-S01-EG4D20(MGC01Z)开发平台硬件使用手册
    一、产品概述MGC01Z开发板将主芯片直接安装在开发板上,免去装卸和连接器不稳定问题,是系统运行更加稳定可靠。MGC01Z搭载了国产FPGA公司-"安路"的新一代FPGA主芯片:内置128......
  • 01.Rust基础
    一、简介Rust是一种预编译静态语言,这意味着你可以编译程序并将可执行文件发送给其他人。二、安装Windows直接去官网下载相关软件程序包即可。它可使用IDE软件进行开发。......
  • C# vs2019 MSB3644 找不到 .NETFramework,Version=v4.6.2 的引用程序集
    一、前言 从github上clone了Dapper的项目,想来学习学习,F6生成的时候,提示MSB3644找不到.NETFramework,Version=v4.6.2的引用程序集的错误二、解决方案1.百度......找......
  • C基础学习笔记——01-C基础第13天(文件下)
    在学习C基础总结了笔记,并分享出来。01-C基础第13天(文件下)目录:(1)按照块读写文件fread、fwrite1)写文件2)读文件3)强化训练:大文件拷贝(2)文件的随机读写(3)Windows和Linux文本文件区别......
  • C基础学习笔记——01-C基础第07天(字符串处理函数和函数)
    在学习C基础总结了笔记,并分享出来。01-C基础第07天(字符串处理函数和函数)目录:一、字符串处理函数(1)gets()(2)fgets()(3)puts()(4)fputs()(5)strlen()(6)strcpy()(7)strncpy()(8)strcat()(9)str......