我是javaFX的初学者,今天开始我想我想要如何绘制线条,当我创建一个新组并放置一个线对象时,它给我一个错误,如:
import java.awt.geom.Line2D;
import javafx.*;
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class DrawingLine extends Application{
public static void main(String[] args) {
launch();
}
@Override
public void start(Stage primaryStage){
primaryStage.setTitle("Hello World!");
Button btn = new Button();
Line line = new Line(); //error
//Line2D line = new Line2D(); error
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
StackPane root = new StackPane();
root.getChildren().add(btn);
primaryStage.setScene(new Scene(root, 300, 250));
primaryStage.show();
}
}
然后它说要导入javax.sound.sampled但是它说我将它改为Line2D并且这不是在javafx并且给我一个错误:“无法实例化 类型Line2D“
为什么不能创建Line2D
?
答案 0 :(得分:2)
使用像这样的行类
线条线=新线(100,10,10,110);
您需要指定起点和终点坐标
这一行从(100,10)到(10,100)