[Button] disable 后继续触发事件


button setEnable(false) 后, button显示为灰色,但是还是能够触发点击等事件。 解决方法可以在事件执行的操作中加入验证

// if enable than do some operation
// if disable do nothing
if ( this .jButton.isEnabled()) {
            
//if ture to do these        
        }
//false do nothing    

你可能感兴趣的:([Button] disable 后继续触发事件)