當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。