|
|||||||
Прогрмма Круг
Время создания: 03.09.2017 08:15
Раздел: Java - JavaFx - Простые программы
Запись: xintrea/mytetra_db_mcold/master/base/1504415687y75fs9uutu/text.html на raw.githubusercontent.com
|
|||||||
|
|||||||
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package scenegraph; 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.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.stage.Stage; /** * * @author mcold */ public class SceneGraph extends Application {
@Override public void start(Stage primaryStage) {
StackPane root = new StackPane(); Circle cir = new Circle(200, 200, 100); cir.setFill(Color.CORAL); root.getChildren().add(cir);
Scene scene = new Scene(root, 400, 400);
primaryStage.setTitle("Scene Graph Example"); primaryStage.setScene(scene); primaryStage.show(); } /** * @param args the command line arguments */ public static void main(String[] args) { launch(args); }
} |
|||||||
Прикрепленные файлы:
|
|||||||
Так же в этом разделе:
|
|||||||
|
|||||||
|