广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州什么是JavaFX路径?_北大青鸟IT学校

作者:邓华发布时间:2021-05-13分类:Java技术浏览:841


导读:什么是JavaFX路径?相信学过Java的同学都遇到过这个问题,那么答案是什么呢?接下来一起来看看惠州北大青鸟老师是怎么回答的。

什么是JavaFX路径?相信学过Java的同学都遇到过这个问题,那么答案是什么呢?接下来一起来看看惠州北大青鸟老师是怎么回答的。

JavaFX有其他内置的形状,如

  • Arc

  • Circle

  • CubicCurve

  • Ellipse

  • Line

  • Path

  • Polygon

  • Polyline

  • QuadCurve

  • Rectangle

  • SVGPath

  • Text

以下代码显示了如何创建路径。

import javafx.application.Application;import javafx.geometry.Insets;import javafx.scene.Group;import javafx.scene.Scene;import javafx.scene.control.CheckBox;import javafx.scene.layout.HBox;import javafx.scene.layout.StackPane;import javafx.scene.layout.VBox;import javafx.scene.shape.LineTo;import javafx.scene.shape.MoveTo;import javafx.scene.shape.Path;import javafx.stage.Stage;public class Main extends Application {    public static void main(String[] args) {
       launch(args);
   }

   @Override    public void start(Stage stage) {
       Scene scene = new Scene(new Group());
       stage.setTitle("Checkbox Sample");
       stage.setWidth(230);
       stage.setHeight(120);

       Path path = new Path();
       path.getElements().add(new MoveTo(0.0f, 50.0f));
       path.getElements().add(new LineTo(100.0f, 100.0f));

       VBox vbox = new VBox();
       vbox.getChildren().addAll(path);
       vbox.setSpacing(5);

       HBox root = new HBox();
       root.getChildren().add(vbox);
       root.setSpacing(40);
       root.setPadding(new Insets(20, 10, 10, 20));

       ((Group) scene.getRoot()).getChildren().add(root);

       stage.setScene(scene);
       stage.show();
   }
}

路径元素实际上从javafx.scene.shape.PathElement类扩展,它仅在Path对象的上下文中使用。

所以你不能实例化一个LineTo类放在场景图中。具有 To 作为后缀的类是路径元素,而不是Shape节点。

例如,MoveTo和LineTo对象实例是添加到Path对象的Path元素,而不是可以添加到场景的形状。

上面的代码生成以下结果。

JavaFX路径.png

想了解更多关于Java的资讯吗?可以来惠州北大青鸟新方舟校区了解一下。

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表