當前位置: 首頁>>代碼示例>>Java>>正文


Java TextArea.setMinHeight方法代碼示例

本文整理匯總了Java中javafx.scene.control.TextArea.setMinHeight方法的典型用法代碼示例。如果您正苦於以下問題:Java TextArea.setMinHeight方法的具體用法?Java TextArea.setMinHeight怎麽用?Java TextArea.setMinHeight使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javafx.scene.control.TextArea的用法示例。


在下文中一共展示了TextArea.setMinHeight方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: StepPanel

import javafx.scene.control.TextArea; //導入方法依賴的package包/類
public StepPanel(AppSession session, StepWrapper step) {
    this.session = session;
    runButton = new Button("►");        
    textArea = new TextArea();
    textArea.setFont(App.getDefaultFont());
    textArea.setMinHeight(0);
    textArea.setWrapText(true);
    textArea.focusedProperty().addListener((val, before, after) -> {
        if (!after) { // if we lost focus
            rebuildFeatureIfTextChanged();
        }
    });
    this.step = step;
    initTextArea();
    runButton.setOnAction(e -> run());
    getChildren().addAll(textArea, runButton);
    setLeftAnchor(textArea, 0.0);
    setRightAnchor(textArea, 30.0);
    setBottomAnchor(textArea, 0.0);
    setRightAnchor(runButton, 0.0);
    setTopAnchor(runButton, 2.0);
    setBottomAnchor(runButton, 0.0);
}
 
開發者ID:intuit,項目名稱:karate,代碼行數:24,代碼來源:StepPanel.java

示例2: node

import javafx.scene.control.TextArea; //導入方法依賴的package包/類
private void node() {
    new JrflNode<TextArea>("editor") {

        @Override
        protected TextArea node() {
            TextArea n = new TextArea(text);
            n.setMinHeight(Nodes.TEXT_VBOX.getPrefHeight()/1.5);
            area = n;
            return n;
        }
    };
}
 
開發者ID:iAmGio,項目名稱:jrfl,代碼行數:13,代碼來源:EditorComponent.java

示例3: jsonHandler

import javafx.scene.control.TextArea; //導入方法依賴的package包/類
public VBox jsonHandler(Stage stage) {
    VBox vb = new VBox();
    vb.setPadding(new Insets(10, 20, 10, 20));
    vb.setSpacing(10);

    Label label = new Label("Edit :");
    label.setFont(Font.font("San-serif", 13));
    tArea = new TextArea(readJSON());
    tArea.setMinHeight(300);
    vb.getChildren().addAll(label, tArea);
    return vb;
}
 
開發者ID:CognizantQAHub,項目名稱:Cognizant-Intelligent-Test-Scripter,代碼行數:13,代碼來源:ParseJSON.java

示例4: createConsoleTabContent

import javafx.scene.control.TextArea; //導入方法依賴的package包/類
private VBox createConsoleTabContent()
{
	//TODO: Connect to backend
	VBox vbox = new VBox(10);
	
	Label title = new Label();
	title.setText("Debug Console (PLPSimCL)");
	title.setFont(Font.font("Arial", FontWeight.NORMAL, 12));
	
	TextArea consoleTextArea = new TextArea();
	consoleTextArea.setMinHeight(400);
	
	HBox interactionLine = new HBox(15);
	
	TextField executeStatement = new TextField();
	executeStatement.setPrefWidth(750);
	
	Button executeButton = new Button("Execute");
	Button clearButton = new Button("Clear");
	
	interactionLine.getChildren().addAll(executeStatement, executeButton, clearButton);
	
	vbox.getChildren().addAll(title, consoleTextArea, interactionLine);
	
	return vbox;
	
	
	
	
}
 
開發者ID:dhawal9035,項目名稱:WebPLP,代碼行數:31,代碼來源:CpuWindow.java


注:本文中的javafx.scene.control.TextArea.setMinHeight方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。