交叉发布:
• https://community.oracle.com/message/13853226#13853226
• http://www.coderanch.com/t/666101/JavaFX/java/TextFlow-FXML#3105251
我试图在应用程序执行期间(不是在启动时)在控制器中使用来自 FXML 的 TextFlow,但没有显示文本。
我努力了:
textflow.getChildren.add(text);
并且:
textflow=new TextFlow(text);
其中文本是:
Text text=new Text("AAA");
我在这两种情况下 TextFlow 都没有显示任何内容。
是否有另一个使用 FXML JavaFX 应用程序与富文本一起使用的容器?
当然,如果我在非 FXML JavaFX 应用程序中尝试这两种情况,它们都适用。
更新:
FXML 中的 TextFlow 看起来像这样
<TextFlow fx:id="txtFlow" layoutX="20.0" layoutY="230.0" prefHeight="70.0" prefWidth="430.0" style="-fx-border-color: ADD9E6;" AnchorPane.bottomAnchor="10.0" AnchorPane.leftAnchor="20.0" AnchorPane.rightAnchor="140.0">
FXML
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.TextFlow?>
<AnchorPane id="AnchorPane" prefHeight="200" prefWidth="320" xmlns:fx="http://javafx.com/fxml/1" fx:controller="testfxmlpackage.FXMLDocumentController">
<children>
<TextFlow fx:id="txtF" layoutX="22.0" layoutY="234.0" prefHeight="74.0" prefWidth="433.0" style="-fx-border-color: ADD8E6;" AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="22.0" AnchorPane.rightAnchor="142.0" />
</children>
</AnchorPane>
控制器
package testfxmlpackage;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.text.Text;
import javafx.scene.text.TextFlow;
public class FXMLDocumentController implements Initializable {
@FXML TextFlow txtF;
@Override
public void initialize(URL url, ResourceBundle rb) {
txtF=new TextFlow(new Text("aaa"));
txtF.getChildren().add(new Text("aaa"));
}
}
主班
package testfxmlpackage;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class TestFXMLPackage extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}