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

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

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

TableView.widthProperty介绍

暂无

代码示例

代码示例来源:origin: pmd/pmd

.bind(eventLogTableView.widthProperty()
            .subtract(logCategoryColumn.getPrefWidth())
            .subtract(logDateColumn.getPrefWidth())

代码示例来源:origin: org.jrebirth.af.showcase/todos

@Override
protected void showView() {
  super.showView();
  view().getTable().widthProperty().addListener(new ChangeListener<Number>() {
    @Override
    public void changed(final ObservableValue<? extends Number> obs, final Number oldValue, final Number newValue) {
      final Pane header = (Pane) view().getTable().lookup("TableHeaderRow");
      if (header.isVisible()) {
        header.setMaxHeight(0);
        header.setMinHeight(0);
        header.setPrefHeight(0);
        header.setVisible(false);
      }
    }
  });
}

代码示例来源:origin: org.jrebirth.af.showcase/todos

@Override
protected void showView() {
  super.showView();
  view().getTable().widthProperty().addListener(new ChangeListener<Number>() {
    @Override
    public void changed(ObservableValue<? extends Number> obs, Number oldValue, Number newValue) {
      final Pane header = (Pane) view().getTable().lookup("TableHeaderRow");
      if (header.isVisible()) {
        header.setMaxHeight(0);
        header.setMinHeight(0);
        header.setPrefHeight(0);
        header.setVisible(false);
      }
    }
  });
}

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

@Override
public void showFilteredResult(List<SqlResultModel> filteredResult, SqlFilterModel usedFilter) {
  resultTable.getColumns().clear();
  if (!filteredResult.isEmpty()) {
    for (int i = 0; i < filteredResult.get(0).rows.size(); i++) {
      TableColumn<SqlResultModel, String> rowColumn = new TableColumn<SqlResultModel, String>();
      rowColumn.setText(filteredResult.get(0).rows.get(i).get());
      final int rowIndex = i;
      rowColumn.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<SqlResultModel, String>, ObservableValue<String>>() {
        @Override
        public ObservableValue<String> call(CellDataFeatures<SqlResultModel, String> param) {
          return param.getValue().rows.get(rowIndex);
        }
      });// -3 for the border
      rowColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).divide(filteredResult.get(0).rows.size()));
      resultTable.getColumns().add(rowColumn);
    }
    ObservableList<SqlResultModel> content = FXCollections.observableArrayList();
    content.addAll(filteredResult);
    content.remove(0);
    setOriginalItems(resultTable, content);
  }
}

代码示例来源:origin: com.nexitia.emaginplatform/emagin-jfxcore-engine

tableColumn.prefWidthProperty().bind(tableView.widthProperty().multiply(Double.valueOf(prefWidth)));
} else {
 tableColumn.prefWidthProperty().bind(tableView.widthProperty().multiply(Double.valueOf(0.10)));

代码示例来源:origin: com.nexitia.emaginplatform/emagin-jfxcore-engine

tableColumn.prefWidthProperty().bind(tableView.widthProperty().multiply(Double.valueOf(prefWidth)));
} else {
 tableColumn.prefWidthProperty().bind(tableView.widthProperty().multiply(Double.valueOf(0.10)));

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

timeColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.15));
timeout.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.15));
messageColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.45));
idColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.25));

代码示例来源:origin: com.nexitia.emaginplatform/emagin-jfxcore-engine

tableView.widthProperty().addListener((ChangeListener<Number>) (observable, oldValue, newValue) -> {
 if (processTableWidthChangeService.isRunning()) {
  processTableWidthChangeService.cancel();

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

countColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(2).multiply(0.075));
workflowClassColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(2).multiply(0.525));
double totalSpaceForStateColumns = 0.4;
  tableColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(2).multiply(totalSpaceForStateColumns / WorkflowInstanceState.values().length));
  resultTable.getColumns().add(tableColumn);

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

timeColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.15));
loglevelColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.05));
locationColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.05));
messageColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.73));

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

idColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.11));
prioritynColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.07));
processorPoolColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.09));
stateColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.07));
timeoutColumn.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.09));
lastActivityTimestamp.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.11));
overallLifetimeInMs.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.09));
startTime.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.09));
finishTime.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.09));
lastErrorTime.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.09));
errorInfos.prefWidthProperty().bind(resultTable.widthProperty().subtract(3).multiply(0.1));

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

typeCol.prefWidthProperty().bind(storageContentTable.widthProperty().subtract(2).multiply(0.75));
countCol.prefWidthProperty().bind(storageContentTable.widthProperty().subtract(2).multiply(0.25));

相关文章