/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package progressbar_23394_changestyle; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.*; import javafx.scene.layout.VBox; import javafx.stage.Stage; //import com.javafx.experiments.scenicview.ScenicView; public class MainRadioButton extends Application { public static void main(String[] args) { launch(args); } public void start(Stage stage) { VBox box = new VBox(); RadioButton bar = new RadioButton("Val"); bar.setStyle("-fx-accent: green"); box.getChildren().add(bar); RadioButton bar2 = new RadioButton("Val"); bar2.setStyle("-fx-accent: yellow"); box.getChildren().add(bar2); RadioButton bar3 = new RadioButton("Val"); bar3.setStyle("-fx-accent: red"); box.getChildren().add(bar3); Scene scene = new Scene(box); scene.getStylesheets().add(MainRadioButton.class.getResource("testRadioButton.css").toExternalForm()); stage.setScene(scene); stage.setTitle("Test without WebView or ProgressBar"); stage.show(); } }