我试图在应用程序最大化时更改窗格的背景图像。我的背景是使用内嵌 css 设置的。我为样式设置了两个不同的变量和一个 if 语句。但是,我没有运气让它改变样式。
String cssStyle = "-fx-background-image: url(\'file:images/poker_table.png\');" +
"-fx-background-position: center center;" +
"-fx-background-radius: 15;" + // ************* For rounded corners
"-fx-background-size: 100% 100%;";
String cssStyle2 = "-fx-background-image: url(\'file:images/poker_table.jpg\');" +
"-fx-background-position: center center;" +
"-fx-background-radius: 15;" +
"-fx-background-size: 100% 100%;";
if (!primaryStage.isMaximized())
{ gameScreen.setStyle(cssStyle);
}
else
{ gameScreen.setStyle(cssStyle2);
} Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号