예제 #1
0
 public ImageButton(Skin skin, string styleName = null) : this(skin.Get <ImageButtonStyle>(styleName))
 {
 }
예제 #2
0
 public ListBox(Skin skin, string styleName = null) : this(skin.Get <ListBoxStyle>(styleName))
 {
 }
예제 #3
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))
 {
 }
예제 #4
0
 public ImageTextButton(string text, Skin skin, string styleName = null) : this(text,
                                                                                skin.Get <ImageTextButtonStyle>(styleName))
 {
 }
예제 #5
0
 public TextField(string text, Skin skin, string styleName = null) : this(text,
                                                                          skin.Get <TextFieldStyle>(styleName))
 {
 }
예제 #6
0
파일: Slider.cs 프로젝트: v-karpov/Nez
 // 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))
 {
 }
예제 #7
0
파일: ProgressBar.cs 프로젝트: v-karpov/Nez
 public ProgressBar(float min, float max, float stepSize, bool vertical, Skin skin, string styleName = null) : this(min, max, stepSize, vertical, skin.Get <ProgressBarStyle>(styleName))
 {
 }
예제 #8
0
파일: Slider.cs 프로젝트: v-karpov/Nez
 public Slider(float min, float max, float stepSize, bool vertical, Skin skin, string styleName = null) : this(min, max, stepSize, vertical, skin.Get <SliderStyle>(styleName))
 {
 }
예제 #9
0
파일: Slider.cs 프로젝트: v-karpov/Nez
 public Slider(Skin skin, string styleName = null) : this(0, 1, 0.1f, false, skin.Get <SliderStyle>(styleName))
 {
 }
예제 #10
0
 public Window(string title, Skin skin, string styleName = null) : this(title, skin.Get <WindowStyle>(styleName))
 {
 }
예제 #11
0
 public SelectBox(Skin skin, string styleName = null) : this(skin.Get <SelectBoxStyle>(styleName))
 {
 }
예제 #12
0
 public SelectBox(Skin skin) : this(skin.Get <SelectBoxStyle>())
 {
 }
예제 #13
0
파일: Label.cs 프로젝트: Paramecium13/Nez
 public Label(string text, Skin skin, string styleName = null) : this(text, skin.Get <LabelStyle>(styleName))
 {
 }
예제 #14
0
 public CheckBox(string text, Skin skin, string styleName = null) : this(text,
                                                                         skin.Get <CheckBoxStyle>(styleName))
 {
 }