示例#1
0
 public BsButtonModel(string text, BsComponentStatus status = BsComponentStatus.None, Glyphicon?glyphicon = null, string cssClass = null)
     : base(text, status, glyphicon)
 {
     TagName       = "button";
     Type          = BsComponentType.Button;
     this.cssClass = cssClass;
 }
示例#2
0
 public BsButtonModel(string text, BsComponentStatus status = BsComponentStatus.None, Glyphicon? glyphicon = null, string cssClass = null)
     : base(text, status, glyphicon)
 {
     TagName = "button";
     Type = BsComponentType.Button;
     this.cssClass = cssClass;
 }
示例#3
0
 public BsComponentModel(string text, BsComponentStatus status = BsComponentStatus.None, Glyphicon?glyphicon = null)
 {
     Text      = text;
     Status    = status;
     Glyphicon = glyphicon;
 }
示例#4
0
 public BsComponentModel(string text, BsComponentStatus status = BsComponentStatus.None, Glyphicon? glyphicon = null)
 {
     Text = text;
     Status = status;
     Glyphicon = glyphicon;
 }