Search in sources :

Example 21 with TextArea

use of javafx.scene.control.TextArea in project Gargoyle by callakrsos.

the class FxControlsTreeViewExam method getTestNod.

Node getTestNod() {
    /* [시작] 분석하고자하는 UI구조 */
    BorderPane borderPane = new BorderPane();
    ScrollPane scrollPane2 = new ScrollPane();
    scrollPane2.setContent(new TextArea());
    borderPane.setTop(new HBox(new Button(), new Button(), new HTMLEditor()));
    borderPane.setCenter(new BorderPane(scrollPane2));
    /* [끝] 분석하고자하는 UI구조 */
    return borderPane;
}
Also used : BorderPane(javafx.scene.layout.BorderPane) HBox(javafx.scene.layout.HBox) TextArea(javafx.scene.control.TextArea) Button(javafx.scene.control.Button) ScrollPane(javafx.scene.control.ScrollPane) HTMLEditor(javafx.scene.web.HTMLEditor)

Aggregations

TextArea (javafx.scene.control.TextArea)21 Button (javafx.scene.control.Button)9 Scene (javafx.scene.Scene)7 Label (javafx.scene.control.Label)6 HBox (javafx.scene.layout.HBox)5 Popup (io.bitsquare.gui.main.overlays.popups.Popup)3 CheckBox (javafx.scene.control.CheckBox)3 BorderPane (javafx.scene.layout.BorderPane)3 Stage (javafx.stage.Stage)3 InputTextField (io.bitsquare.gui.components.InputTextField)2 FormBuilder.addLabelTextArea (io.bitsquare.gui.util.FormBuilder.addLabelTextArea)2 PaymentAccountContractData (io.bitsquare.payment.PaymentAccountContractData)2 Contract (io.bitsquare.trade.Contract)2 Offer (io.bitsquare.trade.offer.Offer)2 IOException (java.io.IOException)2 List (java.util.List)2 FXCollections (javafx.collections.FXCollections)2 ObservableList (javafx.collections.ObservableList)2 Insets (javafx.geometry.Insets)2 Node (javafx.scene.Node)2