我有一个简短的程序,它将旋转的对象放在 VBox 中。我希望 VBox 根据旋转来调整它的垂直大小。在以下示例中,文本对象不应接触:
但他们确实如此。生成它的代码如下:
package metcarob.com.soavisualise;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.scene.text.Text;
import javafx.stage.Stage;
public class TestAppForRotate extends Application {
@Override
public void start(final Stage primaryStage) throws Exception {
Group root = new Group();
Scene scene = new Scene(root);
primaryStage.setScene(scene);
VBox vbox = new VBox();
root.getChildren().add(vbox);
Group g = null;
Text t = null;
StackPane p = null;
for (int c=0;c<3;c++) {
g = new Group();
t = new Text("Test " + Integer.toString(c));
p = new StackPane();
p.getChildren().add(t);
p.setStyle("-fx-background-color: white; -fx-border-color: orange; -fx-border-width: 3;");
g.getChildren().add(p);
g.setRotate(c * 35);
vbox.getChildren().add(g);
}
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
在这个配置中,我在 Group 内的 StackPane 中有 Text,整个 Group 被旋转并添加到 VBox(在这个例子中,我需要 Orange Box 和 Text 一样旋转)
关于如何让它发挥作用的任何想法?罗伯特