当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaFX 类 VLineTo用法及代码示例


VLineTo类是JavaFX的一部分。 VLineTo类创建从当前位置到指定Y坐标的垂直线路径。 VLineTo类继承PathElement类。

该类的构造函数:

  1. VLineTo():创建VLineTo的空对象。
  2. VLineTo(double y):使用指定的y坐标值创建VLineTo对象。

常用方法:


方法 说明
getY() 返回Y坐标的值。
setY(double v) 设置Y坐标的值。
toString() 返回VLineTo对象的字符串表示形式。
yProperty() 定义Y坐标。

以下示例程序旨在说明VLineTo类的用法:

  • Java程序创建路径并将VLineTo添加到其中并显示它:
    1. 在此程序中,我们将创建一个名为path的Path对象。
    2. 创建具有指定Y坐标的VLineTo对象。
    3. 然后创建一个名为moveto的MoveTo对象,并将moveto和vlineto对象添加到路径中。
    4. 将此路径添加到“组”对象,然后将“组”对象添加到场景,然后将场景添加到舞台。
    5. 调用show()函数以显示最终结果。
    // Java program to create a path 
    // and add VLineTo to it and display it 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.layout.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.text.*; 
    import javafx.geometry.*; 
    import javafx.scene.layout.*; 
    import javafx.scene.shape.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.*; 
      
    public class VLineTo_1 extends Application { 
      
        // launch the application 
        public void start(Stage stage) 
        { 
      
            try { 
      
                // set title for the stage 
                stage.setTitle("VLineTo"); 
      
                // create VLineTo 
                VLineTo vlineto = new VLineTo(200); 
      
                // create moveto 
                MoveTo moveto = new MoveTo(100, 100); 
      
                // create a Path 
                Path path = new Path(moveto, vlineto); 
      
                // set fill for path 
                path.setFill(Color.BLACK); 
      
                // set stroke width 
                path.setStrokeWidth(2); 
      
                // create a Group 
                Group group = new Group(path); 
      
                // create a scene 
                Scene scene = new Scene(group, 400, 300); 
      
                // set the scene 
                stage.setScene(scene); 
      
                stage.show(); 
            } 
      
            catch (Exception e) { 
      
                System.out.println(e.getMessage()); 
            } 
        } 
      
        // Main Method 
        public static void main(String args[]) 
        { 
      
            // launch the application 
            launch(args); 
        } 
    }

    输出:

  • Java程序创建路径并向其中添加多个VLineTo对象并显示它:
    1. 在此程序中,我们将创建一个名为path的Path对象。
    2. 创建具有指定Y坐标的三个VLineTo对象。
    3. 然后创建三个名为Moveto,moveto_1和moveto_2的MoveTo对象。
    4. 将所有moveto和vlineto对象按顺序添加到路径。
    5. 将此路径添加到“组”对象,然后将“组”对象添加到场景,然后将场景添加到舞台。
    6. 调用show()函数以显示最终结果。
    // Java program to create a path and add the 
    // multiple VLineTo object to it and display it 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.layout.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.text.*; 
    import javafx.geometry.*; 
    import javafx.scene.layout.*; 
    import javafx.scene.shape.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.*; 
      
    public class VLineTo_2 extends Application { 
      
        // launch the application 
        public void start(Stage stage) 
        { 
      
            try { 
      
                // set title for the stage 
                stage.setTitle("VLineTo"); 
      
                // create VLineTo 
                VLineTo vlineto = new VLineTo(200); 
                VLineTo vlineto_1 = new VLineTo(250); 
                VLineTo vlineto_2 = new VLineTo(225); 
      
                // create moveto 
                MoveTo moveto = new MoveTo(100, 100); 
                MoveTo moveto_1 = new MoveTo(200, 100); 
                MoveTo moveto_2 = new MoveTo(300, 100); 
      
                // create a Path 
                Path path = new Path(moveto, vlineto, moveto_1, 
                               vlineto_1, moveto_2, vlineto_2); 
      
                // set fill for path 
                path.setFill(Color.BLACK); 
      
                // set stroke width 
                path.setStrokeWidth(2); 
      
                // create a Group 
                Group group = new Group(path); 
      
                // create a scene 
                Scene scene = new Scene(group, 400, 300); 
      
                // set the scene 
                stage.setScene(scene); 
      
                stage.show(); 
            } 
      
            catch (Exception e) { 
      
                System.out.println(e.getMessage()); 
            } 
        } 
      
        // Main Method 
        public static void main(String args[]) 
        { 
      
            // launch the application 
            launch(args); 
        } 
    }

    输出:

注意:以上程序可能无法在在线IDE中运行,请使用离线编译器。

参考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/VLineTo.html



相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 JavaFX | VLineTo Class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。