gpt4 book ai didi

java - JLabel 面板不透明度和一般背景着色

转载 作者:行者123 更新时间:2023-11-29 04:44:16 25 4
gpt4 key购买 nike

代码背后的想法是一个简单的乘法游戏,它生成 2 个数字,我必须输入正确的答案。

基本上,我的问题是:

  1. 当我做 operacao.setOpaque(false);它什么都不做,或者至少不是我期望它做的(http://puu.sh/pyVcE/813aa1843a.png - 灰色区域不应该是粉红色的,因为背景是粉红色的吗?)。 JLabels 也是如此,setOpaque(false) 在(本例中)数字后面留下灰色背景。
  2. 我有最后一个评论部分,因为我看到这里有人说要改变绘画方法,它确实有效,但导致了一些奇怪的问题(当我启动控制台时,所有东西都被绘画了,只有 JTextField 是清晰的),然后我用 setOpacity(1) 来“修复”它;设置背景(粉红色); - 这是正确的做法吗?

 public class Frame extends JFrame {

private JPanel panel, mensagem, operacao;
private JTextArea sucesso;
private JLabel numero1, numero2;
private JTextField resposta;
private Color pink = new Color(255, 213, 224);
//more vars

public Frame() {
super("Jogo de Multiplicar!");
setOpacity(1);
setBackground(pink);

setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(new BorderLayout());
setSize(300, 200);

panel = new JPanel();
mensagem = new JPanel();
operacao = new JPanel();
mensagem.setLayout(new FlowLayout(FlowLayout.CENTER));
operacao.setLayout(new FlowLayout(FlowLayout.CENTER));

sucesso = new JTextArea();
sucesso.setEditable(false);
sucesso.setOpaque(false);
sucesso.setFont(minhaFont2);

Random randomGen = new Random();

while (random1 == 0)
random1 = randomGen.nextInt(10);
while (random2 == 0)
random2 = randomGen.nextInt(10);
res = random1 * random2;

numero1 = new JLabel();
numero2 = new JLabel();
numero1.setText(random1 + " *");
numero2.setText(random2 + " =");
numero1.setOpaque(false);
numero1.setFont(minhaFont);
numero2.setFont(minhaFont);

resposta = new JTextField(2);
resposta.addActionListener(new MinhaAcao());
resposta.setFont(minhaFont);

operacao.add(numero1);
operacao.add(numero2);
operacao.add(resposta);

mensagem.add(sucesso);

operacao.setOpaque(true);
operacao.setBackground(pink);
mensagem.setOpaque(true);
mensagem.setBackground(pink);

//add(panel, BorderLayout.NORTH);
add(operacao);
add(mensagem, BorderLayout.SOUTH);

}/*
public void paint(Graphics g) {
g.setColor(pink);
g.fillRect(0, 0, this.getWidth(), this.getHeight());
}*/

最佳答案

您需要将文本字段设置为粉红色。您可能必须这样做。

resposta.setOpaque(false);

我已经重构了你的代码,如下所示。

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.util.Random;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.JTextField;

public class Frame extends JFrame {

private JPanel panel, mensagem, operacao;
private JTextArea sucesso;
private JLabel numero1, numero2;
private JTextField resposta;
private Color pink = new Color(255, 213, 224);
//more vars

public Frame() {
super("Jogo de Multiplicar!");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(new BorderLayout());
setSize(300, 200);
getContentPane().setBackground(pink);
panel = new TransperantPanel();
mensagem = new TransperantPanel();
operacao = new TransperantPanel();
mensagem.setLayout(new FlowLayout(FlowLayout.CENTER));
operacao.setLayout(new FlowLayout(FlowLayout.CENTER));

sucesso = new JTextArea();
sucesso.setEditable(false);

Random randomGen = new Random();
int random1 =0 , random2 = 0;
while (random1 == 0)
random1 = randomGen.nextInt(10);
while (random2 == 0)
random2 = randomGen.nextInt(10);
int res = random1 * random2;

numero1 = new JLabel();
numero2 = new JLabel();
numero1.setText(random1 + " *");
numero2.setText(random2 + " =");


resposta = new JTextField(2);
resposta.setOpaque(false);
resposta.addActionListener(new MinhaAcao());
numero1.setFont(minhaFont);
numero2.setFont(minhaFont);
resposta.setFont(minhaFont);

operacao.add(numero1);
operacao.add(numero2);
operacao.add(resposta);

mensagem.add(sucesso);

add(operacao);
add(mensagem, BorderLayout.SOUTH);

}

public static void main(String[] args){
Frame f = new Frame();
f.setVisible(true);
}

class TransperantPanel extends JPanel {

public TransperantPanel() {
setOpaque(false);
}

}
}

我所做的是

  1. 将背景设置为框架的 contentPane。
  2. 创建了一个透明面板(将面板的不透明设置为 false)。
  3. 将 JTextfield 的不透明设置为 false。

关于java - JLabel 面板不透明度和一般背景着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37913582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com