- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个计算器类,它将从 4 个文本字段中的 3 个获取输入,然后使用我已经创建的 Loan 类计算另一个文本字段。
现在我需要添加“计算器样式”按钮,用户可以使用该按钮将这些金额输入到文本字段中。这是我到目前为止所拥有的。 。 。
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Vector;
public class Calculator extends JFrame implements ActionListener
{
public static final int width = 400;
public static final int height = 300;
private JButton calculate;
private static JTextField amount;
private JTextField interest;
private JTextField term;
private JTextField payment;
private JLabel amountL;
private JLabel interestL;
private JLabel termL;
private JLabel paymentL;
private String i = "0";
public Calculator ()
{
super("Loan Calculator");
setSize(width, height);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
calculate = new JButton("payment");
calculate.setFocusable(false);
amount = new JTextField(10);
interest = new JTextField(10);
term = new JTextField(10);
payment = new JTextField(10);
JPanel numbButt = new JPanel();
numbButt.setLayout(new GridLayout(4,3));
JButton zero = new JButton("0");
zero.setFocusable(false);
JButton one = new JButton("1");
one.setFocusable(false);
JButton two = new JButton("2");
two.setFocusable(false);
JButton three = new JButton("3");
three.setFocusable(false);
JButton four = new JButton("4");
four.setFocusable(false);
JButton five = new JButton("5");
five.setFocusable(false);
JButton six = new JButton("6");
six.setFocusable(false);
JButton seven = new JButton("7");
seven.setFocusable(false);
JButton eight = new JButton("8");
eight.setFocusable(false);
JButton nine = new JButton("9");
nine.setFocusable(false);
JButton period = new JButton(".");
period.setFocusable(false);
numbButt.add(seven);
seven.addActionListener(this);
numbButt.add(eight);
eight.addActionListener(this);
numbButt.add(nine);
nine. addActionListener(this);
numbButt.add(four);
four.addActionListener(this);
numbButt.add(five);
five.addActionListener(this);
numbButt.add(six);
six.addActionListener(this);
numbButt.add(one);
one.addActionListener(this);
numbButt.add(two);
two.addActionListener(this);
numbButt.add(three);
three.addActionListener(this);
numbButt.add(zero);
zero.addActionListener(this);
numbButt.add(period);
period.addActionListener(this);
JButton enter = new JButton("enter");
enter.setFocusable(false);
numbButt.add(enter);
enter.addActionListener(this);
JPanel inputPanel = new JPanel();
inputPanel.setLayout(new GridLayout(4,2));
setLayout(new BorderLayout());
amountL = new JLabel("amount");
interestL = new JLabel("interest");
termL = new JLabel("term");
paymentL = new JLabel("payment");
inputPanel.add(amountL);
inputPanel.add(amount);
inputPanel.add(interestL);
inputPanel.add(interest);
inputPanel.add(termL);
inputPanel.add(term);
inputPanel.add(paymentL);
inputPanel.add(payment);
add(inputPanel, BorderLayout.CENTER);
calculate.addActionListener(this);
JButton amountB = new JButton("amount");
amountB.setFocusable(false);
amountB.addActionListener(this);
JPanel buttonPanel = new JPanel();
buttonPanel.add(calculate);
buttonPanel.add(amountB);
add(buttonPanel, BorderLayout.SOUTH);
add(numbButt, BorderLayout.WEST);
interest.requestFocusInWindow();
ActionListener actionListener = new ActionFocusMover();
enter.addActionListener(actionListener);
}
@Override
public void actionPerformed(ActionEvent e)
{
String iamt, ii, iterm, ipmt;
String buttonString = e.getActionCommand();
Component x;
if(buttonString.equals("1"))
i=i+1;
else if(buttonString.equals("2"))
i=i+2;
else if(buttonString.equals("3"))
i=i+3;
else if(buttonString.equals("4"))
i=i+4;
else if(buttonString.equals("5"))
i=i+5;
else if(buttonString.equals("6"))
i=i+6;
else if(buttonString.equals("7"))
i=i+7;
else if(buttonString.equals("8"))
i=i+8;
else if(buttonString.equals("9"))
i=i+9;
else if(buttonString.equals("0"))
i=i+0;
else if(buttonString.equals("."))
i=i+".";
else if(buttonString.equals("enter"))
else if(buttonString.equals("payment"))
{
iamt = amount.getText();
ii = interest.getText();
iterm = term.getText();
Loan justin = new Loan(Integer.parseInt(iterm),Double.parseDouble(ii), Double.parseDouble(iamt));
payment.setText(Double.toString(justin.getPayment()));
}
else
{
ii = interest.getText();
iterm = term.getText();
ipmt = payment.getText();
Loan justin = new Loan(Double.parseDouble(ipmt), Integer.parseInt(iterm),Double.parseDouble(ii));
amount.setText(Double.toString(justin.getAmount()));
}
amount.setText(i);
}
public static void setFocus()
{
amount.requestFocusInWindow();
}
class ActionFocusMover implements ActionListener {
public void actionPerformed(ActionEvent actionEvent) {
KeyboardFocusManager manager = KeyboardFocusManager.getCurrentKeyboardFocusManager();
manager.focusNextComponent();
}
}
}
我设置的方式允许将按钮输入到字符串中,然后暂时放入静态字段(金额)中。我需要知道的是如何编辑来检查哪个对象当前具有焦点以及 inputbuttonString 到该对象中。 编辑
最佳答案
您可以使用requestFocusInWindow方法将焦点设置在组件上。确保组件可显示、可聚焦且可见。
来自How to Use the Focus Subsystem
If you want to ensure that a particular component gains the focus the first time a window is activated, you can call the requestFocusInWindow method on the component after the component has been realized, but before the frame is displayed.
要在 Amount
字段上设置初始焦点,请在 pack()
之后调用 requestFocusInWindow
。
同一教程提供了有关焦点遍历策略
和焦点遍历键
的示例。例如如何添加 Enter
作为焦点遍历键:
Set forwardKeys = getFocusTraversalKeys(
KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS);
Set newForwardKeys = new HashSet(forwardKeys);
newForwardKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0));
setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
newForwardKeys);
或者,您可以在 JTextArea
操作方法中转移焦点,该方法对 Enter
按键使用react,即:
amount.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
interest.requestFocusInWindow();
}
});
关于java:改变对 JTextPane 的关注,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20405745/
众所周知,jQuery 的 $.post 函数非常棒,但我遇到的问题是查看页面源代码的人可以查看数据的去向,从而移向该页面进行窥探,或者,上帝禁止找到保存所有内容的文件夹。所以我的问题是,谁知道如何隐
我在下面有这个程序,它执行简单的关注/取消关注功能。一切都很好,除了当我刷新页面时,只有行中的第一个用户保留正确的关注/取消关注按钮。示例 我可以关注 user1 user2 和 user3,但是当我
我想要创建的是一个关注者/关注系统,您不是简单地关注用户,而是关注他们共享的内容部分。几乎就好像您关注的是 Twitter 的“列表”或群组而不是人员。不过,有了这个,您就可以关注/取消关注用户共享的
这个问题已经有答案了: facebook social plug-in not showing up when added dynamically (2 个回答) 已关闭 7 年前。 使用 HTML
我正在构建一个编辑器,它使用 TImage 来显示图片,并具有鼠标事件来能够在图像上绘制、移动框和调整框大小。这一切都很完美。现在我正在尝试实现使用键盘上的箭头移动选定框的功能,但是A)TImage没
我有两个问题,请记住我是一个java新手1.我有一个使用 JFrame 创建 GUI 的类。JFrame 有 2 个面板,我使用 JSplitPane 添加了 问题是我可以设法将焦点设置在所需的 JP
我目前正在使用iOS应用程序进行开发,该应用程序会从流式API捕获一些推文。因此,我使用用户名和密码进行身份验证。除此之外,我想给用户提供在Twitter上关注某些人的机会。我创建了一个UIButto
有没有办法钩入Play evolutions framework这样当它成功从 n.sql 迁移时至 n+1.sql至 n+2.sql ...,它在 Play 应用程序中调用了一些成功后 Hook (
我的 gorm 中有文本模式为多行的文本框。我必须通过 jQuery 将 css 应用到该文本框。为此,我使用了以下脚本。 $(document).ready(function() {
我在强制关注动态生成的 JQuery 对话框内容中的文本字段时遇到问题。我已经在 google 上搜索过这一点,似乎如果 Jquery 对话框设置为模式,JQuery 将“窃取”文档级别的焦点。老实说
下午,我正在使用 PHP、HTML5 和 Bootstrap。我构建了一个分为 5 个选项卡的表单,该表单中有几个必填字段。所有必需的输入字段都是“文本”,并且还标有 required="requir
我创建了一个带有 GridView 的 WPF 页面。在 GridView 中,每行有 5 个可用的 TextBox。当我在第一行的第一个 TextBox 上输入数据,然后按 Tab 键时,焦点移动到
请给我Java中密码验证的正则表达式代码,它应该由一个大写字符、一个整数、一个后面的符号(@、#、$、%、^、&、+、=)和小字符组成。 我一直在尝试使用不同的独立正则表达式和一个组合的正则表达式。
我想在我的 mean-stack 网页上添加一个 Twitter 的关注按钮。我使用以下代码: https://jsbin.com/herikik/3/edit?html,output 在 Ma
在下添加如下代码后到我在 Tumblr 上的主题 .tail { position:fixed; bottom:0px; right:0px; margin-bottom:434px; margin-
我必须从 Angular 应用程序启动一系列窗口。我希望能够让用户单击主页上的按钮以使该窗口重新成为焦点。通常我会在 javascript 中使用类似以下内容来执行此操作: //Launch the
因此,我想显示一些用 AND 或 OR 连接的规则,并且我想为 AND 或 OR 添加颜色,如红色、绿色等。 Fruit = Apple AND Market = SuperMarket1 那么我应该
我正在开发 Windows 商店应用程序,我正在使用 ListView 控件动态添加数据。这些项目被添加到列表的末尾。 Scrollbar 在添加更多数据时出现。我想用底部的滚动条以编程方式突出显示最
(问题仅在 Ubuntu 中出现。在 Windows 中工作正常。我不知道在其他 Linux 环境中) 我已经使用 ComponentListener 的方法在对话框中调用 JTextField 中的
如何将焦点放在时间选择器元素上?我正在开发电视应用程序,因此需要远程操作。所以我需要关注每个元素。TimePicker 有 3 个元素 - 小时列、分钟列和 AM/PM 列。 那么我如何才能专注于这
我是一名优秀的程序员,十分优秀!