Java AWT面板

本文概述

  • AWT面板类声明
  • Java AWT面板示例
【Java AWT面板】面板是最简单的容器类。它提供了一个空间, 应用程序可以在其中附加任何其他组件。它继承了Container类。
它没有标题栏。
AWT面板类声明
public class Panel extends Container implements Accessible

Java AWT面板示例
import java.awt.*; public class PanelExample { PanelExample() { Frame f= new Frame("Panel Example"); Panel panel=new Panel(); panel.setBounds(40, 80, 200, 200); panel.setBackground(Color.gray); Button b1=new Button("Button 1"); b1.setBounds(50, 100, 80, 30); b1.setBackground(Color.yellow); Button b2=new Button("Button 2"); b2.setBounds(100, 100, 80, 30); b2.setBackground(Color.green); panel.add(b1); panel.add(b2); f.add(panel); f.setSize(400, 400); f.setLayout(null); f.setVisible(true); } public static void main(String args[]) { new PanelExample(); } }

输出:
Java AWT面板

文章图片

    推荐阅读