本文整理了Java中javafx.scene.control.Tab.setOnClosed()
方法的一些代码示例,展示了Tab.setOnClosed()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Tab.setOnClosed()
方法的具体详情如下:
包路径:javafx.scene.control.Tab
类名称:Tab
方法名:setOnClosed
暂无
代码示例来源:origin: org.copper-engine/copper-monitoring-client
@Override
public void handle(Event event) {
// workaround for javafx memeoryleaks RT-25652, RT-32087
formTabFinal.setContent(null);
formTabFinal.textProperty().unbind();
formTabFinal.setOnClosed(null);
form.close();
}
});
代码示例来源:origin: org.copper-engine/copper-monitoring-client
formTab.setOnClosed(new EventHandler<Event>() {
@Override
public void handle(Event event) {
代码示例来源:origin: io.datafx/flow
/**
* This methods creates a tab that contains the given view.
* By doing so the metadata of the view will be bound to the tab properties.
* So the text and icon of the tab can be changed by the view.
*
* @param context the context of the view. This includes the view and its controller instance
* so that all needed informations are part of the context
* @param exceptionHandler the exception handle for the view. This handler will handle all exceptions that will be thrown in the DataFX container context
*/
public <T> Tab createTab(ViewContext<T> context, ExceptionHandler exceptionHandler) {
Tab tab = new Tab();
tab.textProperty().bind(context.getMetadata().titleProperty());
tab.graphicProperty().bind(context.getMetadata().graphicsProperty());
tab.setOnClosed(e -> {
try {
context.destroy();
} catch (Exception exception) {
exceptionHandler.setException(exception);
}
});
tab.setContent(context.getRootNode());
return tab;
}
代码示例来源:origin: io.datafx/flow
public <T extends Node> Tab startInTab(FlowContainer<T> container) throws FlowException {
Tab tab = new Tab();
getCurrentViewMetadata().addListener((e) -> {
tab.textProperty().unbind();
tab.graphicProperty().unbind();
tab.textProperty().bind(getCurrentViewMetadata().get().titleProperty());
tab.graphicProperty().bind(getCurrentViewMetadata().get().graphicsProperty());
});
tab.setOnClosed(e -> {
try {
destroy();
} catch (Exception exception) {
exceptionHandler.setException(exception);
}
});
tab.setContent(start(container));
return tab;
}
内容来源于网络,如有侵权,请联系作者删除!