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