JavaFX-绘制时钟界面
生活随笔
收集整理的這篇文章主要介紹了
JavaFX-绘制时钟界面
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
內容要求:
1、使用Circle、Line、Text、等組件完成時鐘界面設計;
2、分別設置各組件的屬性,參考效果如下圖所示。
?
import javafx.scene.shape.Circle;import javafx.scene.text.Font;import javafx.scene.text.FontPosture;import javafx.scene.text.FontWeight;import javafx.stage.Stage;public class HelloApplication extends Application{public void start(Stage primaryStage){Pane pane = new StackPane();Circle circle = new Circle();circle.centerXProperty().bind(pane.widthProperty().divide(2));circle.centerYProperty().bind(pane.heightProperty().divide(2));circle.setRadius(50);circle.setStroke(Color.GREEN);circle.setFill(Color.RED);pane.getChildren().add(circle);Label label = new Label("JavaFX");label.setFont(Font.font("Time New Roman",FontWeight.BOLD, FontPosture.ITALIC,20));label.setTextFill(Color.WHITE);pane.getChildren().add(label);Scene scene = new Scene(pane,200,200);primaryStage.setTitle("ShowCircle");primaryStage.setScene(scene);primaryStage.show();}public static void main(String[] args) {Application.launch();}}總結
以上是生活随笔為你收集整理的JavaFX-绘制时钟界面的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 基于FPGA等精度的实时测量频率和占空比
- 下一篇: Unity中实现群组行为