/** Create new Slider with given caption and listener. */
public Slider slider(String caption,
Property.ValueChangeListener changeListener) {
Slider c = slider(caption);
c.addListener(changeListener);
return c;
}
/** Move the build 'focus' of this builder to window's content. */
public void with(Window w) {