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

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

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

TextArea.setMaxHeight介绍

暂无

代码示例

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

textArea.setMaxHeight(Double.MAX_VALUE);
GridPane.setVgrow(textArea, Priority.ALWAYS);
GridPane.setHgrow(textArea, Priority.ALWAYS);

代码示例来源:origin: it.unibo.alchemist/alchemist-projectview

textArea.setWrapText(true);
textArea.setMaxWidth(Double.MAX_VALUE);
textArea.setMaxHeight(Double.MAX_VALUE);
GridPane.setVgrow(textArea, Priority.ALWAYS);
GridPane.setHgrow(textArea, Priority.ALWAYS);

代码示例来源:origin: org.controlsfx/controlsfx

textArea.setMaxHeight(Double.MAX_VALUE);
GridPane.setVgrow(textArea, Priority.ALWAYS);
GridPane.setHgrow(textArea, Priority.ALWAYS);

代码示例来源:origin: com.canoo.dolphin-platform/dolphin-platform-client-javafx

textArea.setMaxHeight(Double.MAX_VALUE);
GridPane.setVgrow(textArea, Priority.ALWAYS);
GridPane.setHgrow(textArea, Priority.ALWAYS);

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

public static void showException(String title, String message, Exception exception) {
 final Alert alert = new Alert(Alert.AlertType.ERROR);
 alert.initStyle(StageStyle.UTILITY);
 alert.setTitle("Exception");
 alert.setHeaderText(title);
 alert.setContentText(message);
 final StringWriter sw = new StringWriter();
 final PrintWriter pw = new PrintWriter(sw);
 exception.printStackTrace(pw);
 final String exceptionText = sw.toString();
 final Label label = new Label("Details:");
 final TextArea textArea = new TextArea(exceptionText);
 textArea.setEditable(false);
 textArea.setWrapText(true);
 textArea.setMaxWidth(Double.MAX_VALUE);
 textArea.setMaxHeight(Double.MAX_VALUE);
 GridPane.setVgrow(textArea, Priority.ALWAYS);
 GridPane.setHgrow(textArea, Priority.ALWAYS);
 final GridPane expContent = new GridPane();
 expContent.setMaxWidth(Double.MAX_VALUE);
 expContent.add(label, 0, 0);
 expContent.add(textArea, 0, 1);
 alert.getDialogPane().setExpandableContent(expContent);
 alert.showAndWait();
}

代码示例来源:origin: com.github.vatbub/common.view.core

public ExceptionAlert(Throwable e, String contentText, ButtonType... buttonTypes) {
    super(AlertType.ERROR, contentText, buttonTypes);

    String exceptionText = ExceptionUtils.getFullStackTrace(e);

    Label label = new Label(bundle.getString("stackTraceLabel"));

    TextArea textArea = new TextArea(exceptionText);
    textArea.setEditable(false);
    textArea.setWrapText(true);

    textArea.setMaxWidth(Double.MAX_VALUE);
    textArea.setMaxHeight(Double.MAX_VALUE);
    GridPane.setVgrow(textArea, Priority.ALWAYS);
    GridPane.setHgrow(textArea, Priority.ALWAYS);

    GridPane expContent = new GridPane();
    expContent.setMaxWidth(Double.MAX_VALUE);
    expContent.add(label, 0, 0);
    expContent.add(textArea, 0, 1);

    // Set expandable Exception into the dialog pane.
    this.getDialogPane().setExpandableContent(expContent);
  }
}

代码示例来源:origin: org.tentackle/tentackle-fx

textArea.setWrapText(true);
textArea.setMaxWidth(Double.MAX_VALUE);
textArea.setMaxHeight(Double.MAX_VALUE);
GridPane expContent = new GridPane();
expContent.setMaxWidth(Double.MAX_VALUE);

代码示例来源:origin: PhoenicisOrg/phoenicis

@Override
  protected void drawStepContent() {
    super.drawStepContent();

    TextArea licenceWidget = new TextArea(licenceText);
    licenceWidget.setLayoutX(10);
    licenceWidget.setLayoutY(100);
    licenceWidget.setMinWidth(700);
    licenceWidget.setMaxWidth(700);
    licenceWidget.setMinHeight(308);
    licenceWidget.setMaxHeight(308);
    licenceWidget.setEditable(false);

    CheckBox confirmWidget = new CheckBox(tr("I agree"));
    confirmWidget.setOnAction(event -> {
      isAgree = !isAgree;
      confirmWidget.setSelected(isAgree);
      setNextButtonEnabled(isAgree);
    });
    confirmWidget.setLayoutX(10);
    confirmWidget.setLayoutY(418);
    setNextButtonEnabled(false);

    this.addToContentPane(licenceWidget);
    this.addToContentPane(confirmWidget);
  }
}

代码示例来源:origin: com.bitplan.gui/com.bitplan.javafx

textArea.setMaxHeight(Double.MAX_VALUE);
GridPane.setVgrow(textArea, Priority.ALWAYS);
GridPane.setHgrow(textArea, Priority.ALWAYS);

相关文章