예제 #1
0
 public Window(string title, Skin skin, string styleName = null) : this(title, skin.Get <WindowStyle>(styleName))
 {
 }
예제 #2
0
 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))
 {
 }
예제 #3
0
 public ImageTextButton(string text, Skin skin, string styleName = null) : this(text,
                                                                                skin.Get <ImageTextButtonStyle>(styleName))
 {
 }
예제 #4
0
 public Label(string text, Skin skin, string styleName = null) : this(text, skin.Get <LabelStyle>(styleName))
 {
 }
예제 #5
0
파일: ListBox.cs 프로젝트: JonSnowbd/Ash
 public ListBox(Skin skin, string styleName = null) : this(skin.Get <ListBoxStyle>(styleName))
 {
 }
예제 #6
0
파일: CheckBox.cs 프로젝트: JonSnowbd/Ash
 public CheckBox(string text, Skin skin, string styleName = null) : this(text,
                                                                         skin.Get <CheckBoxStyle>(styleName))
 {
 }