中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java中swing的用法有哪些

小億
98
2023-09-25 18:44:48
欄目: 編程語言

在Java中,Swing是一個圖形用戶界面(GUI)工具包,用于創建窗口、按鈕、文本框等GUI組件。以下是一些常見的Swing用法:

  1. 創建一個基本的窗口:
import javax.swing.*;
public class MyWindow extends JFrame {
public MyWindow() {
setSize(300, 200);
setTitle("My Window");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new MyWindow());
}
}
  1. 添加按鈕:
import javax.swing.*;
public class MyWindow extends JFrame {
public MyWindow() {
setSize(300, 200);
setTitle("My Window");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton button = new JButton("Click me");
add(button);
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new MyWindow());
}
}
  1. 添加文本框:
import javax.swing.*;
public class MyWindow extends JFrame {
public MyWindow() {
setSize(300, 200);
setTitle("My Window");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JTextField textField = new JTextField();
add(textField);
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new MyWindow());
}
}
  1. 使用布局管理器來布置組件:
import javax.swing.*;
import java.awt.*;
public class MyWindow extends JFrame {
public MyWindow() {
setSize(300, 200);
setTitle("My Window");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(new FlowLayout()); // 使用流式布局管理器
JButton button1 = new JButton("Button 1");
JButton button2 = new JButton("Button 2");
JButton button3 = new JButton("Button 3");
add(button1);
add(button2);
add(button3);
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new MyWindow());
}
}
  1. 響應按鈕點擊事件:
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class MyWindow extends JFrame {
public MyWindow() {
setSize(300, 200);
setTitle("My Window");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton button = new JButton("Click me");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(null, "Button clicked!");
}
});
add(button);
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new MyWindow());
}
}

這些只是一些基本的用法,Swing還有很多其他功能和組件可以使用。

0
孝感市| 饶阳县| 平昌县| 乌拉特中旗| 扬州市| 南昌市| 灵山县| 浦县| 台前县| 郯城县| 南丹县| 渝北区| 禹城市| 乌苏市| 苍梧县| 普洱| 天峨县| 汶川县| 金湖县| 新宁县| 麻阳| 台山市| 凤台县| 海南省| 衡水市| 思茅市| 庆元县| 高淳县| 庆云县| 福建省| 闵行区| 车险| 喀喇沁旗| 原平市| 时尚| 曲阳县| 涟水县| 江山市| 贵溪市| 阜宁县| 拉孜县|