这是我第一次使用java swing n co进行gui编程,所以我需要一些建议。我目前正通过在按钮上设置动作命令来为按钮添加功能。然后我在容器上听取下面的操作:
colorButton.setText("Select Color");
colorButton.setFocusable(false);
colorButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
colorButton.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
jToolBar1.add(colorButton);
jToolBar1.add(jSeparator1);
colorButton.setActionCommand("selectColor");
colorButton.addActionListener(this);
然后,我会检查执行操作的组件是使用以下代码段执行的:
else if("selectColor".equals(e.getActionCommand())) {
Color c = JColorChooser.showDialog(this, "Select Color", Color.GREEN);
if (selectedShape != null) {
undoStack.add(copyOf(model.getAllShapes()));
model.setShapeColor(selectedShape, c);
}
else{
defaultColor = c;
}
}
我只是想知道这是好事还是坏事?
答案 0 :(得分:1)
我通常会使用匿名类,例如
JButton button = new JButton("BUTTON");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event ) {
// do relevant stuff
}
});
编辑:MadProgrammer的评论(上图)很好地总结了你的选择。对于“更长”的方法来说,这可能确实不是最好的方法,但对于简单的方法来说,它很好而且非常清晰。