- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在程序中将 JTexfield 居中时遇到问题。Textfield 似乎没有与 JButton 对齐。我试过使用 x.setHoriontalAlignment(JTextfield.CENTER);但无济于事。有什么想法吗?
import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.JPanel;
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.GridBagLayout;
public class WidgetProject implements ActionListener
{
//class constants
private static final Color BUTTON_COLOUR1 = Color.WHITE;
private static final int BUTTON_HEIGHT = 75;
private static final int BUTTON_WIDTH = 400;
private static final int TEXTFIELD_HEIGHT = 400;
private static final int TEXTFIELD_WIDTH = 50;
private static final String SECONDS_PER_MINUTE = "Seconds to Minutes or Minutes to Seconds";
private static final String BUTTON2_MODIFIED_LABEL = "yes";
private static final String POUNDS_PER_KILOGRAM = "Pounds to Kilograms or Kilograms to Pounds";
private static final String CHANGE_MY_LABEL = "1";
private static final int HEIGHT = 400;
private static final int WIDTH = 400;
// instance fields
private JButton button1;
private JButton button2;
private JButton button3;
private JButton button4;
private JFrame frame;
private JTextField textInput;
private JPanel panel;
/**
* A free-standing frame with two buttons.
*
* @param title the title of this frame
*/
public WidgetProject(String title)
{
// Establish the frame.
frame = new JFrame(title);
frame.setLayout(new BoxLayout(frame.getContentPane(), BoxLayout.Y_AXIS));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setPreferredSize(new Dimension(WIDTH, HEIGHT));
// Establish button dimensions.
Dimension buttonDimension = new Dimension(BUTTON_WIDTH, BUTTON_HEIGHT);
// Establish Textfield dimensions.
Dimension textDimension = new Dimension(TEXTFIELD_HEIGHT, TEXTFIELD_WIDTH);
// Create and add the first button.
button1 = new JButton(SECONDS_PER_MINUTE);
button1.setActionCommand(CHANGE_MY_LABEL);
button1.addActionListener(this);
button1.setPreferredSize(buttonDimension);
button1.setMinimumSize(buttonDimension);
button1.setMaximumSize(buttonDimension);
button1.setBackground(BUTTON_COLOUR1);
frame.add(button1);
// Create and add the second button.
button2 = new JButton(POUNDS_PER_KILOGRAM);
button2.setActionCommand(CHANGE_MY_LABEL);
button2.addActionListener(this);
button2.setPreferredSize(buttonDimension);
button2.setMinimumSize(buttonDimension);
button2.setMaximumSize(buttonDimension);
button2.setBackground(BUTTON_COLOUR1);
frame.add(button2);
// Create an input text field.
textInput = new JTextField(20);
textInput.setPreferredSize(textDimension);
textInput.setMinimumSize(textDimension);
textInput.setMaximumSize(textDimension);
textInput.setHorizontalAlignment(JTextField.CENTER);
panel = new JPanel();
panel.add(textInput);
String string = textInput.getText();
// Display the frame and text field.
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.add(textInput);
}//构造函数 ButtonDuo 结束
最佳答案
首先:x.setHorizontalAlignment(JTextField.CENTER);
将文本设置在中心而不是 JTextField
如果你想在中心创建 JTextField,只需创建 panel = new JPanel();
并在其上添加按钮,如下所示:panel.add(button1);
panel.add(button2);
panel.add(textInput, BorderLayout.CENTER);
---> 在这里我将 textInput
设置在 jpanel 的中心
然后:将“Jpanel”添加到 Jframe 中:frame.add(panel);
试试这个:
package javaapplication1;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.JPanel;
class WidgetProject implements ActionListener {
//class constants
private static final Color BUTTON_COLOUR1 = Color.WHITE;
private static final int BUTTON_HEIGHT = 75;
private static final int BUTTON_WIDTH = 400;
private static final int TEXTFIELD_HEIGHT = 400;
private static final int TEXTFIELD_WIDTH = 50;
private static final String SECONDS_PER_MINUTE = "Seconds to Minutes or Minutes to Seconds";
private static final String BUTTON2_MODIFIED_LABEL = "yes";
private static final String POUNDS_PER_KILOGRAM = "Pounds to Kilograms or Kilograms to Pounds";
private static final String CHANGE_MY_LABEL = "1";
private static final int HEIGHT = 400;
private static final int WIDTH = 400;
// instance fields
private JButton button1;
private JButton button2;
private JButton button3;
private JButton button4;
private JFrame frame;
private JTextField textInput;
private JPanel panel;
/**
* A free-standing frame with two buttons.
*
* @param title the title of this frame
*/
public WidgetProject(String title) {
// Establish the frame.
frame = new JFrame(title);
panel = new JPanel();
frame.setLayout(new BoxLayout(frame.getContentPane(), BoxLayout.Y_AXIS));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setPreferredSize(new Dimension(WIDTH, HEIGHT));
// Establish button dimensions.
Dimension buttonDimension = new Dimension(BUTTON_WIDTH, BUTTON_HEIGHT);
// Establish Textfield dimensions.
Dimension textDimension = new Dimension(TEXTFIELD_HEIGHT, TEXTFIELD_WIDTH);
// Create and add the first button.
button1 = new JButton(SECONDS_PER_MINUTE);
button1.setActionCommand(CHANGE_MY_LABEL);
button1.addActionListener(this);
button1.setPreferredSize(buttonDimension);
button1.setMinimumSize(buttonDimension);
button1.setMaximumSize(buttonDimension);
button1.setBackground(BUTTON_COLOUR1);
panel.add(button1);
// Create and add the second button.
button2 = new JButton(POUNDS_PER_KILOGRAM);
button2.setActionCommand(CHANGE_MY_LABEL);
button2.addActionListener(this);
button2.setPreferredSize(buttonDimension);
button2.setMinimumSize(buttonDimension);
button2.setMaximumSize(buttonDimension);
button2.setBackground(BUTTON_COLOUR1);
panel.add(button2);
// Create an input text field.
textInput = new JTextField(20);
textInput.setPreferredSize(textDimension);
textInput.setMinimumSize(textDimension);
textInput.setMaximumSize(textDimension);
textInput.setHorizontalAlignment(JTextField.CENTER);
panel.add(textInput, BorderLayout.CENTER);
String string = textInput.getText();
frame.add(panel);
// Display the frame and text field.
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
} // end of constructor ButtonDuo
@Override
public void actionPerformed(ActionEvent e) {
throw new UnsupportedOperationException("Not supported yet.");
}
}
关于java - 如何使 JTextfield 居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15507639/
//java swing 新手,需要帮助获取第一个 Jtextfield 中的文本以显示在//第二个 jtextfield 中???我很年轻,刚刚开始接触java,需要一些帮助。下面是我已经完成的代码
我正在制作一个用户界面,其中有两个 jtextfields。我想要的是当用户输入第一个jtextfield 它应该以 1 的增量镜像在第二个 jtextfield 中,并且如果用户在第二个 Jtext
我正在设计许可证激活部分。它在 Java Swing 中有两个文本字段。 Java代码: jTextField1.setDocument(new JTextFieldLimit(8)); jTex
我需要将文本从 JFrame 中的 JTextField 传递到另一个 JFrame 中的第二个 JTextField。 GUI 是使用 GUI Editor netbeans 6.9 创建的。 最佳
在从另一个 JTextField 读取一个 String 后,在另一个类中更新一个 JTextField 时遇到一些问题。这是有问题的方法: public JTextField buyVowel(pl
我正在制作身份验证 GUI,它应该包含 2 个文本字段,用户名 JTextField 和密码 JPasswordField。我想让密码字段位于用户名字段下方。我目前的代码如下: public clas
当鼠标在该文本字段中单击时,我需要让该程序清除文本字段中的文本。我尝试了一些方法,但还没有一个对我有用。 完整代码如下: public class TimerClassPanel extends JF
我目前正在学习如何在 Java 中使用 Swing。将 JTextFields、JLabels 或 JButtons 添加到 JPanel 时,我通常用 4 行来完成,如下所示: gbc.gridx
我不确定之前是否已经回答过这个问题;我尝试搜索看看是否有,但没有成功。 我正在做一项家庭作业,并且必须有两个 JTextField:一个接受输入,第二个反转显示给定的输入。例如,如果有人输入 1234
如何将内容从一个 JTextField 逐个字符复制到另一个不可编辑的 JTextField? 第一个 JTextField 中输入的每个字符都应动态显示在第二个 JTextField 中。 最佳答案
我想找到jtextfields(sht1到sht13)的总和并将结果放入llog jtextfield中,但如果我不在每个jtextfield(sht1到sht13)中放入值,它就不起作用 我如何修复
如何验证文本字段在 Swing 中仅输入 10 位数字的手机号码? 我有三个文本字段。 姓名 联系方式 没有。对于电子邮件 我想点击提交按钮,然后检查姓名、联系方式和电子邮件是否正确。我还想设置字符限
我已将 JPopupMenu 添加到 JTextField。不幸的是,当我从 JTextField 更改焦点时,或者当我“最小化”窗口时,JPopupMenu 仍然可见。如果 JTextField 失
我的 JTextField 遇到问题。我不知道如何将变量从 JTextField (位于 JFrame A 中)传递到另一个 JTextField (位于 JFrame B 中)。我尝试这样做,但它没
我正在用java创建一个小程序,用户在四个不同的四个不同文本字段中输入一些数据,单击一个按钮,然后从这些字段中获取数据并将其存储在旁边的文本字段中。 我制作了一个按钮,它实现了 ActionListe
以下是多文件项目的部分代码。我只发布这段代码,因为我不清楚为什么 setText 方法不起作用。并未包含此项目的所有代码。 import javax.swing.*;
大家好,我有一个连接到 Oracle 数据库的 Swing 应用程序,我希望一旦我在 JTextField 中键入一个值,JFrame 上的其他 JTextfield 就会加载来自数据库的后续数据,但
我有一个名为 Name 的 JTextField 和一个名为 Address 的 JTextArea。我的要求是,当用户在 JTextField 中输入名称并按 Enter 键时,光标应转到下一个文本
在 Netbeans 中,每当 JTextField、JButton 获得焦点时,边框就会被蓝色突出显示覆盖,我如何更改其颜色或完全删除它? 最佳答案 您可以通过右键单击设计 View 中的组件,选择
double B=Double.parseDouble(emp_txt2.getText()); double C=Double.parseDouble(nopay_txt3.getText(
我是一名优秀的程序员,十分优秀!