我刚开始使用JavaFX,但似乎无法解决此问题。
我的画布似乎无法填满可供他们使用的全部空间。
我为画布设置了一个尺寸,但它们确实具有此尺寸,但是周围的窗格变大了。这样会在窗格的右侧和底部形成白色边框。
我的代码:
@Override
public void start(Stage primaryStage) throws Exception {
primaryStage.setTitle("ShellShock");
primaryStage.setResizable(false);
final Dimension SCREEN_SIZE = Toolkit.getDefaultToolkit().getScreenSize();
Screen screen = new Screen(SCREEN_SIZE.getWidth() * 0.9, SCREEN_SIZE.getHeight() * 0.9);
Scene scene = new Scene(screen);
primaryStage.setScene(scene);
primaryStage.show();
}
屏幕类别:
public class Screen extends Pane {
private Canvas[] canvases;
public Screen(double width, double height) {
this.setPrefSize(width, height);
this.canvases = new Canvas[2];
Canvas background = new Canvas(width, height);
GraphicsContext gcb = background.getGraphicsContext2D();
gcb.setFill(new LinearGradient(0, 0, 0, 1, true, CycleMethod.REFLECT, new Stop(0.4, Color.BLUE.darker()),
new Stop(1.0, Color.BLUE.brighter().brighter())));
gcb.fillRect(0, 0, width, height);
Canvas foreground = new Canvas(width, height);
this.canvases[0] = background;
this.canvases[1] = foreground;
this.getChildren().add(background);
this.getChildren().add(foreground);
}
}
最佳答案
删除setResizable(false);
行似乎可以解决问题。
还将primaryStage.sizeToScene();
放在setResizable(false)
之后;似乎解决了问题。
关于java - Pane 中的JavaFX Canvas 大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38039236/