在fx中,不会将mouseEvents分派给已禁用的节点,最后是一个演示该行为的快速示例。
对于像我这样的Swinger,这有点令人惊讶:在我的土地上,事件被传递,目标(ui-delegate)的任务是决定是否应该处理事件。实际上最近有人指出这一点 - 完全有效的IMO - use-case of showing a tooltip over a disabled component
从技术上讲,调度似乎是在Node的一个impl方法中被切断的:
/**
* Finds a top-most child node that intersects the given ray.
*
* The result argument is used for storing the picking result.
*/
@Deprecated
public final void impl_pickNode(PickRay pickRay, PickResultChooser result) {
// In some conditions we can omit picking this node or subgraph
if (!isVisible() || isDisable() || isMouseTransparent()) {
return;
}
似乎在命中检测过程中被调用。如果是这样的话,那么在没有太大机会进行调整的情况下,它会在内心深处。
问题:
代码示例:
package fx.control;
import javafx.application.Application;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.CheckBox;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.Pane;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
/**
* @author Jeanette Winzenburg, Berlin
*/
public class MouseEventDisabled extends Application {
private Parent getContent() {
Pane parent = new Pane();
Rectangle r = new Rectangle(100, 100, 200, 200);
r.addEventHandler(MouseEvent.ANY, event -> System.out.println(event));
CheckBox button = new CheckBox("rectangle disabled");
r.disableProperty().bind(button.selectedProperty());
parent.getChildren().addAll(r, button);
return parent;
}
@Override
public void start(Stage primaryStage) throws Exception {
Parent root = getContent();
Scene scene = new Scene(root);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch();
}
}
答案 0 :(得分:4)
public final ReadOnlyBooleanProperty disabledProperty
指示是否禁用此节点。如果在场景图中的自身或其祖先之一上将disable设置为true,则节点将被禁用。 禁用的节点应以不同方式呈现自身,以向用户指示其禁用状态。这种禁用的渲染取决于节点的实现。默认情况下,javafx.scene.shape中包含的形状类不实现此类呈现,因此使用形状处理输入的应用程序必须自己实现适当的禁用呈现。但是,javafx.scene.control中定义的用户界面控件将实现禁用敏感的渲染。
默认值: 假 也可以看看: isDisabled(),setDisabled(boolean)