コード例 #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))
 {
 }