开发者

Java Disabled JLabel Reports Mouse Clicked

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜