@Override
public void layout() {
// Set the size of all components to match the size of the stack pane,
// minus padding
StackPane stackPane = (StackPane)getComponent();
int width = Math.max(getWidth() - (padding.left + padding.right), 0);
int height = Math.max(getHeight() - (padding.top + padding.bottom), 0);
for (Component component : stackPane) {