Esempio n. 1
0
 public static MvcHtmlString StartStopIconButton(this HtmlHelper htmlHelper, bool isStart, string id)
 {
     return(MvcHtmlString.Create(string.Format(InlineImageHtmlButton, IconMap.StartStop, IconMap.StartStopOf(isStart), id)));
 }
Esempio n. 2
0
 public static MvcHtmlString PlusMinusIcon(this HtmlHelper htmlHelper, bool isPlus)
 {
     return(MvcHtmlString.Create(string.Format(InlineImageHtml, IconMap.PlusMinus, IconMap.PlusMinusOf(isPlus))));
 }
Esempio n. 3
0
 public static MvcHtmlString LogLevelIcon(this HtmlHelper htmlHelper, string logLevel)
 {
     return(MvcHtmlString.Create(string.Format(InlineImageHtml, IconMap.LogLevels, IconMap.LogLevelsOf(logLevel))));
 }
Esempio n. 4
0
 public static MvcHtmlString OkCancelIcon(this HtmlHelper htmlHelper, bool isOk)
 {
     return(MvcHtmlString.Create(string.Format(InlineImageHtml, IconMap.OkCancel, IconMap.OkCancelOf(isOk))));
 }
Esempio n. 5
0
 public static MvcHtmlString GoodBadIcon(this HtmlHelper htmlHelper, bool isGood)
 {
     return(MvcHtmlString.Create(string.Format(InlineImageHtml, IconMap.GoodBad, IconMap.GoodBadOf(isGood))));
 }