return new Dimensions(preferredWidth, preferredHeight);
}
public void layout() {
// Set the size of all components to match the size of the stack pane
StackPane stackPane = (StackPane)getComponent();
int width = getWidth();
int height = getHeight();
for (Component component : stackPane) {
component.setSize(width, height);