javafx.scene.control.Tab.setOnClosed()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(182)

本文整理了Java中javafx.scene.control.Tab.setOnClosed()方法的一些代码示例,展示了Tab.setOnClosed()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Tab.setOnClosed()方法的具体详情如下:
包路径:javafx.scene.control.Tab
类名称:Tab
方法名:setOnClosed

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;
}

相关文章