欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

编写程序,包含3个标签,其背景分别为红、黄、蓝3色。

程序员文章站 2024-03-24 12:50:28
...

扩展Frame类实现 3个标签,其背景分别为红、黄、蓝3色。

其中,LabelThree 是自定义测试类的名字

import java.awt.*;
public class LabelThree extends Frame {
    private static final Color Color = null;
    private Label label1 = new Label("123");
    private Label label2 = new Label("456");
    private Label label3 = new Label("789");
    public LabelThree () {
        super("Label");
        setLayout(new GridLayout(3,0));
        add(label1);
        add(label2);
        add(label3);

        label1.setBackground(Color.RED);
        label2.setBackground(Color.BLUE);
        label3.setBackground(Color.GREEN);
        pack();
        setVisible(true);
    }
    public static void main(String[] args){
        LabelThree label = LabelThree lyy();

    }
}
相关标签: Frame java

上一篇: Toolbar的简单使用

下一篇: [1]SwiftUI