GUIセットアップのカードレイアウトに追加するカスタムJPanelを作成しようとしています。このカスタムレイアウトでは、gridlayoutを使用して、ボタンをコンテナに直接追加します。私は今、これらのボタンにアクションリスナーを追加する必要があり、その方法がわかりません。助けていただければ幸いです。以下のカスタムクラスを見つけてください。
import java.awt.*; import java.awt.event.*; import javax.swing.*;
public class PuzzleSudokuPanel extends JPanel{
int[][] grid =
{{0, 0, 0, 5, 0, 0, 8, 3, 1},
{0, 5, 3, 0, 0, 8, 7, 0, 0},
{7, 0, 0, 0, 4, 2, 0, 6, 0},
{0, 0, 9, 0, 3, 0, 0, 7, 8},
{0, 0, 2, 4, 0, 6, 1, 0, 0},
{6, 3, 0, 0, 9, 0, 2, 0, 0},
{0, 1, 0, 7, 6, 0, 0, 0, 9},
{0, 0, 4, 9, 0, 0, 5, 8, 0},
{2, 9, 7, 0, 0, 3, 0, 0, 0}};
Container myGrid = new Container();
public PuzzleSudokuPanel ()throws NullPointerException{
try{
for(int i = 0; i<9; i++){
for(int j = 0; j<9; j++){
String appropriateNumber = convertSimple(grid[i][j]);
myGrid.add(new JButton(appropriateNumber));
}
}
}
catch(NullPointerException e){
}
myGrid.setLayout(new GridLayout(9, 9));
myGrid.setPreferredSize (new Dimension(400, 400));
add(myGrid);
}
public static String convertSimple(int a){
return ("" + a);
}
}
[編集]
カルクロコード:
import java.awt.*; import java.awt.event.*; import javax.swing.*;
public class PuzzleCalkuroPanel extends JPanel{
String[][] grid =
{{"3/", "3/", "3-", "8x"},
{"9+", "9+", "3-", "8x"},
{"9+", "9+2", "9+2", "8x"},
{"1", "9+2", "1-", "1-"}};
Container myGrid = new Container();
public PuzzleCalkuroPanel ()throws NullPointerException{
try{
for(int i = 0; i<4; i++){
for(int j = 0; j<4; j++){
JButton button = new JButton(grid[i][j]);
button.addActionListener(new calkuroListener());
myGrid.add(new JButton(grid[i][j]));
}
}
}
catch(NullPointerException e){
}
myGrid.setLayout(new GridLayout(4, 4));
myGrid.setPreferredSize (new Dimension(400, 400));
add(myGrid);
}
private class calkuroListener implements ActionListener{
public void actionPerformed (ActionEvent event){
String numStr = JOptionPane.showInputDialog("Enter a number to change to: ");
JOptionPane.showMessageDialog(null, numStr);
}
}
}