コード例 #1
0
ファイル: Label.cs プロジェクト: renhammington/UxFoundation
 public Label SetAppearance(LabelAppearanceType appearance)
 {
     Appearance = appearance ?? LabelAppearanceType.Default;
     return this;
 }
コード例 #2
0
ファイル: Label.cs プロジェクト: renhammington/UxFoundation
 public Label(string text, LabelAppearanceType appearance = null, string clientId = null)
     : base("_Label", clientId)
 {
     SetText(text).SetAppearance(appearance);
 }