티스토리 뷰

SWDesk/Web

Javafx용 예제(1)

bizmaker 2020. 1. 22. 15:07

<소스코드>

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 HelloWorld extends Application {
    public static void main(String[] args) {
        launch(args);
    }
    
    @Override
    public void start(Stage primaryStage) {
        primaryStage.setTitle("Hello World!");
        Button btn = new Button();
        btn.setText("Say 'Hello World'");
        btn.setOnAction(new EventHandler<ActionEvent>() {
 
            @Override
            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();
    }
}

 

<결과>

 

 

 

https://unsentables.tistory.com/18

불러오는 중입니다...

 

반응형

'SWDesk > Web' 카테고리의 다른 글

[Web] 공공데이터 활용 - 나라장터  (0) 2020.02.27
PHP를 이용한 XML 및 HTML 파싱  (0) 2020.01.25
[MySQL] DB 백업 및 복원  (0) 2020.01.20
Kotlin Excersing Example  (0) 2019.12.13
[Test Completed] BPM-Master  (1) 2019.12.03