I want a Button that allows me to switch between Dark/Light-mode. But I have the problem If I switch, the active windows will not change their Style.
First of the Code snippets to easy recreate the problem. For Maven projects starter class:
package testapp;
//This Class is Required in mavenproject to Start the Application
public class GUIStarter {
public static void main(final String[] args) {
try{
TestApp.main(args);
}catch (Exception e){
System.out.println("GUIStarter Errror:\n"+e);
}
}
}
The primary Window class:
public class TestApp extends Application {
//stylepaths
public static String mainLightModePath = ".\\style_lightmode.css";
public static String mainDarkModePath = ".\\style-Darkmode.css";
public static boolean isItDarkmode = true;
public static void toggleMode(){
if(isItDarkmode){
isItDarkmode = false;
}else if(!isItDarkmode){
isItDarkmode = true;
}
}
//This is required to get the primary Stage in other Stages (Controllers)
private static Stage pStage;
public static Stage getPrimaryStage() {
return pStage;
}
private void setPrimaryStage(Stage pStage) {
TestApp.pStage = pStage;
}
public void setPrimaryWindow(Stage primaryStage){
try{
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("Mainframe.fxml"));
Parent root = (Parent) fxmlLoader.load();
Scene scene = new Scene(root);
primaryStage.setTitle("TestApp");
//scene.setMoveControl(titleBar);
primaryStage.setScene(scene);
primaryStage.show();
} catch (Exception e){
e.printStackTrace();
}
}
//Start of Application
@Override
public void start(Stage primaryStage) {
setPrimaryStage(primaryStage);
pStage = primaryStage;
setPrimaryWindow(primaryStage);
}
public static void main(String[] args) {
launch(args);
}
}
The maincontroller Class:
public class Mainframe {
public static Timeline time;
@FXML
public void options(ActionEvent event){
try{
TestApp.toggleMode();
Stage stage = (Stage) ((Node)event.getSource()).getScene().getWindow();
Stage changer = TestApp.getPrimaryStage();
stage.close();
changer.hide();
//My idea was to initialize again and load the styles in that way again but does not change anything
FXMLLoader loader = new FXMLLoader(getClass().getResource("Mainframe.fxml"));
loader.load();
Mainframe ctrl = loader.getController();
ctrl.initialize();
changer.show();
}catch (Exception e) {
System.out.println("Error bei der App Klicken von ModeButton. \n error is: "+e);
e.printStackTrace();
}
}
@FXML
public BorderPane primaryparent;
//get and set for elements
@FXML
void initialize() {
//Check Theme
if(TestApp.isItDarkmode){
primaryparent.getStylesheets().clear();
primaryparent.getStylesheets().add(getClass().getResource(TestApp.mainDarkModePath).toString());
}else if(!TestApp.isItDarkmode){
primaryparent.getStylesheets().clear();
primaryparent.getStylesheets().add(getClass().getResource(TestApp.mainLightModePath).toString());
}
}
}
Mainframe.fxml
:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.text.Font?>
<BorderPane fx:id="primaryparent" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="0.0" minWidth="0.0" prefHeight="224.0" prefWidth="515.0" xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1" fx:controller="testapp.Mainframe">
<center>
<AnchorPane prefHeight="200.0" prefWidth="200.0" styleClass="rootBackground" BorderPane.alignment="CENTER">
<children>
<Button fx:id="setDarkModeButton" layoutX="175.0" layoutY="99.0" mnemonicParsing="false" onAction="#options" styleClass="settingsButton" text="toggle Dark/LightMode">
<font>
<Font name="Arial" size="13.0" />
</font>
<padding>
<Insets bottom="5.0" left="17.0" right="17.0" top="5.0" />
</padding>
</Button>
</children>
</AnchorPane>
</center>
</BorderPane>
Before I just overwrote
the "style.css" file and used .stop()
& .show()
. This worked fine. But it can get complicated the more css-files
you have and after it is packed into a .jar
file it doesn't work anymore.
I hope anyone can help me. Because now I have really no Idea...
UPDATE: I want to control it from another controller:
package testapp;
public class Mainframe {
public static Timeline time;
@FXML Button setDarkModeButton;
@FXML
public void options(ActionEvent event){
try{
try{
Stage secSTAGE = new Stage();
FXMLLoader fxmlLoader = new FXMLLoader(TestApp.class.getResource("Mainframe2.fxml"));
Parent root = (Parent) fxmlLoader.load();
Scene scene = new Scene(root);
secSTAGE.setTitle("TestAppw2");
//scene.setMoveControl(titleBar);
secSTAGE.setScene(scene);
secSTAGE.show();
} catch (Exception e){
e.printStackTrace();
}
}catch (Exception e) {
System.out.println("Error bei der App Klicken von ModeButton. \n error is: "+e);
e.printStackTrace();
}
}
@FXML
public BorderPane primaryparent;
//get and set for elements
@FXML
void initialize() {
//Check Theme
if(TestApp.isItDarkmode){
primaryparent.getStylesheets().clear();
primaryparent.getStylesheets().add(getClass().getResource(TestApp.mainDarkModePath).toString());
primaryparent.getStylesheets().add(getClass().getResource(TestApp.mainLightModePath).toString());
}
}
}
public class Mainframe2 {
public static Timeline time;
@FXML Button setDarkModeButton;
@FXML
public void options(ActionEvent event){
try{
TestApp.toggleMode();
Stage stage = (Stage) ((Node)event.getSource()).getScene().getWindow();
FXMLLoader loader = new FXMLLoader(getClass().getResource("Mainframe.fxml"));
Parent root = (Parent) loader.load();
Mainframe ctrl = loader.getController();
//setDarkModeButton.getStylesheets().set(0, "style_lightmode.css");
if(TestApp.isItDarkmode){
root.getStylesheets().set(0, Mainframe.class.getResource(TestApp.mainDarkModePath).toString());
}else{
root.getStylesheets().set(0, Mainframe.class.getResource(TestApp.mainLightModePath).toString());
}
}catch (Exception e) {
System.out.println("Error bei der App Klicken von ModeButton. \n error is: "+e);
e.printStackTrace();
}
}
@FXML
public BorderPane primaryparent;
//get and set for elements
@FXML
void initialize() {
//Check Theme
if(TestApp.isItDarkmode){
primaryparent.getStylesheets().clear();
primaryparent.getStylesheets().add(getClass().getResource(TestApp.mainDarkModePath).toString());
}else if(!TestApp.isItDarkmode){
primaryparent.getStylesheets().clear();
primaryparent.getStylesheets().add(getClass().getResource(TestApp.mainLightModePath).toString());
}
}
}
Css file can be changed on the run without reloading or setting a new stage
replacing the styleSheet with
set()
method for observableListApp.java
0.css
1.css