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