编写程序,包含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();
}
}
上一篇: Toolbar的简单使用
下一篇: [1]SwiftUI