class SettingMain {
void start(Stage primaryStage) throws Exception {
AnchorPane pane = FXMLLoader.load(getClass().getResource("sampleSetting.fxml"));
Scene scene = new Scene(pane);
scene.setFill(Color.web("eff0f1"));
primaryStage.setResizable(false);
primaryStage.setTitle("Параметры");
primaryStage.setScene(scene);
primaryStage.show();
}
}
public class SettingController {
private FileConfig fileConfig = new FileConfig();
@FXML
CheckBox dicBred;
}
}