编程JAVA程序:包含三个标签,其背景分别为红,黄,蓝三色的程序
3个回答
展开全部
你说的背景是整个背景还是标签背景??我两个都设置了你自己看吧 不要的删掉就行
import javax.swing.*;
import java.awt.*;
public class Main
{
public static void main(String args[])
{
//创建窗口
JFrame f = new JFrame("TestLabel");
//设置布局
f.setLayout(new GridLayout(1,3));
JPanel p1= new JPanel();
JPanel p2= new JPanel();
JPanel p3= new JPanel();
//新建标签
Label l1= new Label("label1");
Label l2= new Label("label2");
Label l3= new Label("label3");
//窗口大小
f.setSize(600,300);
//窗口颜色(整体背景色)
p1.setBackground(Color.red);
p2.setBackground(Color.yellow);
p3.setBackground(Color.blue);
//设置(标签的背景色)
l1.setBackground(Color.yellow);
l2.setBackground(Color.blue);
l3.setBackground(Color.red);
//调用面板
f.add(p1);
f.add(p2);
f.add(p3);
//添加标签
p1.add(l1);
p2.add(l2);
p3.add(l3);
//设置框架可见
f.setVisible(true);
//设置框架可以关闭
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
import javax.swing.*;
import java.awt.*;
public class Main
{
public static void main(String args[])
{
//创建窗口
JFrame f = new JFrame("TestLabel");
//设置布局
f.setLayout(new GridLayout(1,3));
JPanel p1= new JPanel();
JPanel p2= new JPanel();
JPanel p3= new JPanel();
//新建标签
Label l1= new Label("label1");
Label l2= new Label("label2");
Label l3= new Label("label3");
//窗口大小
f.setSize(600,300);
//窗口颜色(整体背景色)
p1.setBackground(Color.red);
p2.setBackground(Color.yellow);
p3.setBackground(Color.blue);
//设置(标签的背景色)
l1.setBackground(Color.yellow);
l2.setBackground(Color.blue);
l3.setBackground(Color.red);
//调用面板
f.add(p1);
f.add(p2);
f.add(p3);
//添加标签
p1.add(l1);
p2.add(l2);
p3.add(l3);
//设置框架可见
f.setVisible(true);
//设置框架可以关闭
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询