Java为什么会有默认的背景色_java背景颜色问题
发布日期:2021-10-25 22:55:56 浏览次数:2 分类:技术文章

本文共 1180 字,大约阅读时间需要 3 分钟。

packagelh;importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclasslh1implementsActionListener{JFramef;JButtonT;booleanxs=true;publiclh1(){f=newJFrame("世纪...

package lh;

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

public class lh1 implements ActionListener {

JFrame f;

JButton T;

boolean xs=true;

public lh1() {

f = new JFrame("世纪大作《New World》欢迎您!");

f.setSize(400, 500);

f.setVisible(xs);

f.setBackground(Color.BLUE);

T = new JButton("进入游戏");

T.setBounds(100, 50, 200, 50);

T.addActionListener(this);

T.setForeground(Color.GREEN);

f.add(T);

T = new JButton("注册账号");

T.setBounds(100, 150, 200, 50);

T.addActionListener(this);

T.setForeground(Color.GREEN);

f.add(T);

T = new JButton("找回密码");

T.setBounds(100, 250, 200, 50);

T.addActionListener(this);

T.setForeground(Color.GREEN);

f.add(T);

T = new JButton("退出游戏");

T.setBounds(100, 350, 200, 50);

T.addActionListener(this);

T.setForeground(Color.GREEN);

f.add(T);

}

public void actionPerformed(ActionEvent e) {

String s = e.getActionCommand();

if (s.equals("注册账号"))

lh2.zc();

else if(s.equals("退出游戏"))

System.exit(0);

}

public static void main(String[] args) {

new lh1();

}

}

为什么背景不变色? 还是灰白的

展开

转载地址:https://blog.csdn.net/weixin_32075843/article/details/114666817 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:java虚拟机内存面试题_从一道面试题深入了解java虚拟机内存结构
下一篇:java中将ip转为其他_将ip转为整数以及整数转为ip的java实现

发表评论

最新留言

很好
[***.229.124.182]2024年04月14日 00时18分49秒