gpt4 book ai didi

java - EventHandler 行为怪异并且颜色补丁怪异

转载 作者:行者123 更新时间:2023-12-02 02:51:15 29 4
gpt4 key购买 nike

我有一个作业,其中我应该创建一个应用程序,将货币从卡塔尔里亚尔转换为 3 种选择之一(美元、欧元或英镑)。

我想成为一个酷男孩,并为我的应用程序提供了背景、标题和图标。但这还不够,我还决定不使用提交按钮来开始计算。我在输入字段中添加了一个关键监听器,以便它可以在运行时进行计算。正如您将在下面的代码中看到的,我添加了一个捕获,以防输入不是数字,但是无论我输入什么,我都会收到错误消息并提及奇怪的补丁。

我想知道如何消除那些烦人的色 block ,以及为什么无论输入内容如何都会出现错误?请记住,我知道这是不完整的,我只是想知道如何在继续之前解决我的问题。

截图 https://gyazo.com/f4fbde1274311498f7381a43192bc85d https://gyazo.com/ba90c38dbc4d12f029a1bfe6cadf955a

代码:

package convertor;

import java.awt.Color;
import java.awt.Font;
import java.awt.Toolkit;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;

import javax.swing.ButtonGroup;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextField;

public class MoneyConvertorTemp {

public static void main(String[] args) {
new MoneyConvertorTemp();
}

private MoneyConvertorTemp() {

JFrame frame = new JFrame();
frame.setTitle("Q2W Convertor");
frame.setIconImage(Toolkit.getDefaultToolkit().getImage(MoneyConvertorTemp.class.getResource("/convertor/logo.png")));
frame.setBounds(100, 100, 470, 250);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
frame.setResizable(false);

JPanel mainPanel = new JPanel();
mainPanel.setBounds(0, 0, 464, 221);
frame.getContentPane().add(mainPanel);
mainPanel.setLayout(null);
mainPanel.setBackground(new Color(0, 0, 0, 100));

JLabel background = new JLabel("");
background.setIcon(new ImageIcon(MoneyConvertorTemp.class.getResource("/convertor/image.jpg")));
background.setBounds(0, 0, 464, 221);
frame.getContentPane().add(background);

JLabel headerLbl = new JLabel("Qatri to Western Money Convertor");
headerLbl.setFont(new Font("Traditional Arabic", Font.BOLD | Font.ITALIC, 28));
headerLbl.setForeground(new Color(0,100,0));
headerLbl.setBounds(10, 11, 451, 32);
mainPanel.add(headerLbl);

ButtonGroup currencyChoicesBtnGroup = new ButtonGroup();
JRadioButton usdRadBtn = new JRadioButton("QR to USD");
usdRadBtn.setBackground(new Color(50, 42, 42));
usdRadBtn.setForeground(Color.WHITE);
usdRadBtn.setFont(new Font("Tahoma", Font.BOLD, 14));
currencyChoicesBtnGroup.add(usdRadBtn);
usdRadBtn.setSelected(true);
usdRadBtn.setBounds(308, 68, 131, 23);
mainPanel.add(usdRadBtn);

JRadioButton euroRadBtn = new JRadioButton("QR to Euros");
euroRadBtn.setBackground(new Color(50, 42, 42));
euroRadBtn.setForeground(Color.WHITE);
euroRadBtn.setFont(new Font("Tahoma", Font.BOLD, 14));
currencyChoicesBtnGroup.add(euroRadBtn);
euroRadBtn.setBounds(308, 94, 131, 23);
mainPanel.add(euroRadBtn);

JRadioButton poundsRadBtn = new JRadioButton("QR to pounds");
poundsRadBtn.setBackground(new Color(50, 42, 42));
poundsRadBtn.setForeground(Color.WHITE);
poundsRadBtn.setFont(new Font("Tahoma", Font.BOLD, 14));
currencyChoicesBtnGroup.add(poundsRadBtn);
poundsRadBtn.setBounds(308, 120, 131, 23);
mainPanel.add(poundsRadBtn);

JLabel qrLbl = new JLabel("Qatri Riyal");
qrLbl.setForeground(Color.black);
qrLbl.setFont(new Font("Tahoma", Font.BOLD, 18));
qrLbl.setBounds(27, 74, 104, 32);
mainPanel.add(qrLbl);

JLabel resultsLbl = new JLabel("");
resultsLbl.setForeground(Color.BLACK);
resultsLbl.setFont(new Font("Tahoma", Font.BOLD, 18));
resultsLbl.setBounds(27, 126, 242, 32);
mainPanel.add(resultsLbl);

JTextField inputFld = new JTextField();
inputFld.setBounds(141, 71, 149, 46);
mainPanel.add(inputFld);
inputFld.setColumns(10);

JLabel errorLbl = new JLabel("");
errorLbl.setFont(new Font("Tahoma", Font.BOLD, 12));
errorLbl.setForeground(Color.RED);
errorLbl.setBounds(37, 154, 253, 23);
errorLbl.setVisible(false);
mainPanel.add(errorLbl);

frame.setVisible(true);

inputFld.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent a) {

double input;
errorLbl.setVisible(false);
errorLbl.setText("");

try {
input = Double.parseDouble(inputFld.getText());
} catch (NumberFormatException e) {
errorLbl.setText("Input has to be a number");
errorLbl.setVisible(true);
return;
}
}
});

}

}

最佳答案

weird color patches

mainPanel.setBackground(new Color(0, 0, 0, 100));

Swing 无法正确绘制透明颜色。

使用透明颜色违反了 Swing 绘画的规则,该规则要求组件要么是不透明的,要么是非不透明的。

因此您需要进行自定义绘画以确保首先绘制背景。像这样的东西:

JPanel panel = new JPanel()
{
protected void paintComponent(Graphics g)
{
g.setColor( getBackground() );
g.fillRect(0, 0, getWidth(), getHeight());
super.paintComponent(g);
}
};
panel.setOpaque(false); // background of parent will be painted first
panel.setBackground( new Color(255, 0, 0, 20) );
frame.add(panel);

查看Backgrounds With Transparency了解更多信息和可重用的类来为您完成这幅画。

编辑:

I added to the input field a key listener so it would calculate on run time.

不要使用 KeyListener。这是一个旧的 AWT 解决方案。 Swing 拥有更新、更好的 API。

您可以使用DocumentListener。每当添加或删除文本时,都会生成一个事件。阅读 Swing 教程中关于 How to Write a DocumentListener 的部分了解更多信息和工作示例以帮助您入门。

关于java - EventHandler 行为怪异并且颜色补丁怪异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43812813/

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