public ImageButton(Skin skin, string styleName = null) : this(skin.Get <ImageButtonStyle>(styleName)) { }
public ListBox(Skin skin, string styleName = null) : this(skin.Get <ListBoxStyle>(styleName)) { }
public NumberField(float initial, float min, float max, float step, bool showButtons, Skin skin, string styleName = null) : this(initial, min, max, step, showButtons, skin.Get <NumberFieldStyle>(styleName)) { }
public ImageTextButton(string text, Skin skin, string styleName = null) : this(text, skin.Get <ImageTextButtonStyle>(styleName)) { }
public TextField(string text, Skin skin, string styleName = null) : this(text, skin.Get <TextFieldStyle>(styleName)) { }
// Leaving this constructor for backwards-compatibility public Slider(Skin skin, string styleName = null, float min = 0, float max = 1, float step = 0.1f) : this(min, max, step, false, skin.Get <SliderStyle>(styleName)) { }
public ProgressBar(float min, float max, float stepSize, bool vertical, Skin skin, string styleName = null) : this(min, max, stepSize, vertical, skin.Get <ProgressBarStyle>(styleName)) { }
public Slider(float min, float max, float stepSize, bool vertical, Skin skin, string styleName = null) : this(min, max, stepSize, vertical, skin.Get <SliderStyle>(styleName)) { }
public Slider(Skin skin, string styleName = null) : this(0, 1, 0.1f, false, skin.Get <SliderStyle>(styleName)) { }
public Window(string title, Skin skin, string styleName = null) : this(title, skin.Get <WindowStyle>(styleName)) { }
public SelectBox(Skin skin, string styleName = null) : this(skin.Get <SelectBoxStyle>(styleName)) { }
public SelectBox(Skin skin) : this(skin.Get <SelectBoxStyle>()) { }
public Label(string text, Skin skin, string styleName = null) : this(text, skin.Get <LabelStyle>(styleName)) { }
public CheckBox(string text, Skin skin, string styleName = null) : this(text, skin.Get <CheckBoxStyle>(styleName)) { }