⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testjbutton.java

📁 有关按钮的java程序
💻 JAVA
字号:
import javax.swing.*;
import java.awt.FlowLayout;
public class TestJButton extends JFrame{	
	JButton button1;
	public TestJButton(){
		initFrame();
	}	
	public void initFrame(){
		setTitle("GUI 窗口");	
		setLayout(new FlowLayout());	
		setSize(500,300);		
		setLocation(500,300);	
		setVisible(true);
		Icon icon = new ImageIcon("objects.png");
		button1 = new JButton("确定",icon);		
		add(button1);
		validate();
	}
	public static void main(String[] ar){
		new TestJButton(); 			
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -