私は単に従業員の時計を作ろうとしています。0 ~ 9 の数字のキーパッドとテキスト フィールドがあります。数字をクリックできるようにしたいのですが、数字がテキストフィールドに表示されます。これはとても簡単に思えますが、答えが見つかりません。
私はネットビーンズを使用しており、デザインで Jframe のデザインを作成しました。
すべてのボタンにアクション イベントを追加しました。
Btn0 のような各ボタンを呼び出しています (0 が付いているボタン、Btn1 など)。
私は単に従業員の時計を作ろうとしています。0 ~ 9 の数字のキーパッドとテキスト フィールドがあります。数字をクリックできるようにしたいのですが、数字がテキストフィールドに表示されます。これはとても簡単に思えますが、答えが見つかりません。
私はネットビーンズを使用しており、デザインで Jframe のデザインを作成しました。
すべてのボタンにアクション イベントを追加しました。
Btn0 のような各ボタンを呼び出しています (0 が付いているボタン、Btn1 など)。
ActionEvent が起動される JButton を取得し、JButton から取得したテキストを JTextField に追加する必要があります。短いデモは次のとおりです。
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class EClock extends JFrame
{
JTextField tf;
public void createAndShowGUI()
{
setTitle("Eclock");
Container c = getContentPane();
tf = new JTextField(10);
JPanel cPanel = new JPanel();
JPanel nPanel = new JPanel();
nPanel.setLayout(new BorderLayout());
nPanel.add(tf);
cPanel.setLayout(new GridLayout(4,4));
for (int i =0 ; i < 10 ; i++)
{
JButton button = new JButton(String.valueOf(i));
cPanel.add(button);
button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent evt)
{
String val = ((JButton)evt.getSource()).getText();
tf.setText(tf.getText()+val);
}
});
}
c.add(cPanel);
c.add(nPanel,BorderLayout.NORTH);
setSize(200,250);
setLocationRelativeTo(null);
setResizable(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
public static void main(String[] args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
EClock ec = new EClock();
ec.createAndShowGUI();
}
});
}
}
最初にボタンにアクションリスナーを追加します(GUIデザイナーでボタンをダブルクリックします:)):
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
//Set text by calling setText() method for your textfield
textfield.setText("Desired text");
}
});
よろしく。
すべてのボタンで共有できるアクションを作成します。何かのようなもの:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.border.*;
public class ButtonCalculator extends JFrame implements ActionListener
{
private JButton[] buttons;
private JTextField display;
public ButtonCalculator()
{
display = new JTextField();
display.setEditable( false );
display.setHorizontalAlignment(JTextField.RIGHT);
JPanel buttonPanel = new JPanel();
buttonPanel.setLayout( new GridLayout(0, 5) );
buttons = new JButton[10];
for (int i = 0; i < buttons.length; i++)
{
String text = String.valueOf(i);
JButton button = new JButton( text );
button.addActionListener( this );
button.setMnemonic( text.charAt(0) );
button.setBorder( new LineBorder(Color.BLACK) );
buttons[i] = button;
buttonPanel.add( button );
}
getContentPane().add(display, BorderLayout.NORTH);
getContentPane().add(buttonPanel, BorderLayout.SOUTH);
setResizable( false );
}
public void actionPerformed(ActionEvent e)
{
JButton source = (JButton)e.getSource();
display.replaceSelection( source.getActionCommand() );
}
public static void main(String[] args)
{
ButtonCalculator frame = new ButtonCalculator();
frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
frame.pack();
frame.setLocationRelativeTo( null );
frame.setVisible(true);
}
}
私はネットビーンズについて何も知りませんが、グーグルで検索するとこれが得られました
必要なデータがあるようです。読んでみてください。目的に合わせて何を修正する必要があるかを理解できることは間違いありません。