colLabels[i].addMouseListener(new MyAdapter());
private class MyAdapter extends MouseAdapter {
@Override
public void mouseClicked(MouseEvent event) {
ColJLabel colJLabel = (ColJLabel)event.getComponent();
System.out.println(colJLabe开发者_如何转开发l.ColID);
setColumnHeader(false);
}
}
colLabels[i].setEnabled(flag);
The situation is this: Mouse clicks are trapped correctly but when i have the JLabel (ColJLabel) control disabled it still reports mouse clicks.
How can I make so that mouse clicks are only reported when the control is enabled?
Thanks.
EDIT: SOLVED
colJLabel.isEnabled()
The correct solution would be to check to see if the component is enabled (or better, some kind of model) within the mouse listener.
精彩评论