这行代码有什么明显的问题吗?无论窗口大小如何,我都希望矩形保持居中。但这由于某种原因不起作用,矩形保持在同一个地方。
public void run() {
setSize(800, 800);
createEntireFigure();
}
private void createEntireFigure(){
int centerOfWindowWidth = getWidth() / 2;
int centerOfWindowHeight = getHeight() / 2;
GRectWithGLabel ("A String",centerOfWindowWidth, centerOfWindowHeight);
}