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

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

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

Tab.textProperty介绍

暂无

代码示例

代码示例来源:origin: jfoenixadmin/JFoenix

listener.registerChangeListener(tab.textProperty(), "TEXT");
listener.registerChangeListener(tab.graphicProperty(), "GRAPHIC");
listener.registerChangeListener(tab.tooltipProperty(), "TOOLTIP");

代码示例来源: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: brunoborges/webfx

public void openPage(String location) {
    final URL url;
    try {
      url = URLVerifier.verifyURL(location);
    } catch (MalformedURLException ex) {
      Logger.getLogger(BrowserFXController.class.getName()).log(Level.SEVERE, null, ex);
      return;
    }

    URLHandler urlHandler = URLHandlersRegistry.getHandler(url);
    if (urlHandler == null) {
      return;
    }
    Platform.runLater(() -> {
      URLHandler.Result handleResult = urlHandler.handle(url);
      if (handleResult.contentDescriptor != ContentDescriptor.NoContent.instance()) {
        BrowserTab browserTab = TabFactory.newTab(this, locale, handleResult.contentDescriptor);
        browserTab.getNavigationContext().goTo(url);
        selectionTab.getSelectedItem().contentProperty().bind(browserTab.contentProperty());
        browserMap.put(selectionTab.getSelectedIndex(), browserTab);
//                if(!urlField.isFocused()){
          urlField.textProperty().bind(browserTab.locationProperty());
//                }
        stopButton.disableProperty().set(!browserTab.isStoppable());
        selectionTab.getSelectedItem().textProperty().bind(browserTab.titleProperty());
      }
    });
  }

代码示例来源:origin: org.drombler.commons/drombler-commons-fx-docking

private void addTab(PositionableAdapter<FXDockableEntry> dockable) {
    final Tab tab = new Tab();
    final FXDockableData dockableData = dockable.getAdapted().getDockableData();
    tab.textProperty().bind(dockableData.titleProperty());
    tab.graphicProperty().bind(dockableData.graphicProperty());
    tab.contextMenuProperty().bind(dockableData.contextMenuProperty());
    tab.setContent(dockable.getAdapted().getDockable());
    tabPane.getTabs().add(control.getDockables().indexOf(dockable), 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;
}

代码示例来源:origin: org.copper-engine/copper-monitoring-client

formTab.textProperty().bind(form.displayedTitleProperty());
formTab.setContent(form.getCachedContent());
component.getTabs().add(formTab);

代码示例来源:origin: org.drombler.commons/drombler-commons-docking-fx

private void addTab(PositionableAdapter<FXDockableEntry> dockable) {
  final Tab tab = new Tab();
  final FXDockableData dockableData = dockable.getAdapted().getDockableData();
  tab.textProperty().bind(dockableData.titleProperty());
  tab.graphicProperty().bind(dockableData.graphicProperty());
  tab.tooltipProperty().bind(dockableData.tooltipProperty());
  tab.contextMenuProperty().bind(dockableData.contextMenuProperty());
  tab.setContent(dockable.getAdapted().getDockable());
  tab.setOnCloseRequest(tabManager.createOnCloseRequestHandler(tab, dockable.getAdapted(), control));
  observeDockableData(dockableData, tab);
  tabPane.getTabs().add(control.getDockables().indexOf(dockable), tab);
}

代码示例来源: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: com.jfoenix/jfoenix

updateInnerUI();
});
listener.registerChangeListener(tab.textProperty(), obs-> tabLabel.setText(tab.getText()));
listener.registerChangeListener(tab.graphicProperty(), obs-> tabLabel.setGraphic(tab.getGraphic()));
listener.registerChangeListener(widthProperty(), obs-> header.updateSelectionLine(true));

相关文章