GUI( JavaFX Scene Builder )38 RadioButton package controls; import javafx.application.Application; import javafx.geometry.Pos; import javafx.scene.Scene; import javafx.scene.control.RadioButton; import javafx.scene.control.ToggleGroup; import javafx.scene.layout.HBox; import javafx.stage.Stage; public class RadioButtonEx extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage prim.. 2022. 8. 18. ComboBox package controls; import javafx.application.Application; import javafx.geometry.Pos; import javafx.scene.Scene; import javafx.scene.control.ComboBox; import javafx.scene.layout.HBox; import javafx.stage.Stage; public class ComboBoxEx extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { // ComboBox // - L.. 2022. 8. 18. CheckBox package controls; import javafx.application.Application; import javafx.geometry.Pos; import javafx.scene.Scene; import javafx.scene.control.CheckBox; import javafx.scene.layout.HBox; import javafx.stage.Stage; public class CheckBoxEx extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { // CheckBox // - 생.. 2022. 8. 18. HBox, VBox 병합 예제(2) package total; import javafx.application.Application; import javafx.geometry.Pos; import javafx.scene.Scene; import javafx.scene.layout.HBox; import javafx.scene.layout.Pane; import javafx.scene.layout.VBox; import javafx.stage.Stage; public class Quiz2 extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception .. 2022. 8. 17. 이전 1 ··· 4 5 6 7 8 9 10 다음