【개인적 비망록】 Eclipse에 의한 javax의 VBox·setOnAction의 효과 등
◎サンプルコード
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class Sample extends Application {
public void start(Stage stage){
stage.setWidth(500); //横幅を指定
stage.setHeight(500); //高さを指定
Button button1 = new Button("A"); //button属性をつける
Button button2 = new Button("B");
Button button3 = new Button("C");
Button button4 = new Button("D");
button1.setOnAction(event -> System.out.println("OK!")); //setOnActionでイベント処理を出力させる
button2.setOnAction(event -> System.out.println("NICE!"));
button3.setOnAction(event -> System.out.println("YES!"));
button4.setOnAction(event -> System.out.println("Goodluck!"));
VBox box = new VBox(5);
box.getChildren().addAll(button1,button2,button3,button4); //boxの中にbutton属性をいれて認識させる
stage.setScene(new Scene(box)); //Sceneにboxを表示させる
stage.show() //画面を出力
public static void main(String[] args) {
launch();
실행하면 다음과 같이 표시됩니다.
위에서 순서대로 클릭하면 이벤트 처리가 출력됩니다.
Reference
이 문제에 관하여(【개인적 비망록】 Eclipse에 의한 javax의 VBox·setOnAction의 효과 등), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/patann/items/c71000a725d8cb5bf27f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)