Esempio n. 1
0
 public CheckBox(string text, Skin skin, string styleName)
     : this(text, skin.Get <CheckBoxStyle>(styleName))
 {
 }
Esempio n. 2
0
 public void SetBackground(string drawableName)
 {
     SetBackground(Skin.GetDrawable(drawableName));
 }
Esempio n. 3
0
 public CheckBox(string text, Skin skin)
     : this(text, skin.Get <CheckBoxStyle>())
 {
 }
Esempio n. 4
0
 public Label(CharSequence text, Skin skin, string fontName, string colorName)
     : this(text, new LabelStyle(skin.GetFont(fontName), skin.GetColor(colorName)))
 {
 }
Esempio n. 5
0
 public Dialog(string title, Skin skin, string windowStyleName)
     : base(title, skin.Get <WindowStyle>(windowStyleName))
 {
     Skin = skin;
     Initialize();
 }
Esempio n. 6
0
 public Label(CharSequence text, Skin skin, string styleName)
     : this(text, skin.Get <LabelStyle>(styleName))
 {
 }
Esempio n. 7
0
 public Label(CharSequence text, Skin skin, string fontName, Color color)
     : this(text, new LabelStyle(skin.GetFont(fontName), color))
 {
 }
Esempio n. 8
0
 public Label(string text, Skin skin, string fontName, string colorName)
     : this(new StringSequence(text ?? ""), new LabelStyle(skin.GetFont(fontName), skin.GetColor(colorName)))
 {
 }
Esempio n. 9
0
 public Label(CharSequence text, Skin skin)
     : this(text, skin.Get <LabelStyle>())
 {
 }
Esempio n. 10
0
 public List(object[] items, Skin skin, string styleName)
     : this(items, skin.Get <ListStyle>(styleName))
 {
 }
Esempio n. 11
0
 public Label(string text, Skin skin, string styleName)
     : this(new StringSequence(text ?? ""), skin.Get <LabelStyle>(styleName))
 {
 }
Esempio n. 12
0
 public List(object[] items, Skin skin)
     : this(items, skin.Get <ListStyle>())
 {
 }
Esempio n. 13
0
 public TextField(string text, Skin skin, string styleName)
     : this(text, skin.Get <TextFieldStyle>(styleName))
 {
 }
Esempio n. 14
0
 public TextField(string text, Skin skin)
     : this(text, skin.Get <TextFieldStyle>())
 {
 }
Esempio n. 15
0
 public ScrollPane(Actor widget, Skin skin, string styleName)
     : this(widget, skin.Get <ScrollPaneStyle>(styleName))
 {
 }
Esempio n. 16
0
 public ScrollPane(Actor widget, Skin skin)
     : this(widget, skin.Get <ScrollPaneStyle>())
 {
 }