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

📄 flowlayoutdemo2.java

📁 JAVA程序设计课程中各章节的程序实例。
💻 JAVA
字号:
/**
*A flow layout program using the applet
*2004.11.22. xhcprince
*/
import java.applet.*;
import java.awt.*;

public class flowlayoutDemo2 extends Applet
{
	Button b1,b2,b3;

	public void init()
	{
		setLayout(new FlowLayout(FlowLayout.CENTER));

		b1 = new Button("one");
		b2 = new Button("two");
		b3 = new Button("three");

		add(b1);
		add(b2);
		add(b3);
	}
}
/*
<applet code = "flowlayoutDemo2.class" width = 300 height = 150>
</applet>
*/

⌨️ 快捷键说明

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