Пример #1
0
        public static MvcHtmlString ActionButton(this HtmlHelper helper, string text, string icon = null, BootstrapColorTheme theme = BootstrapColorTheme.Default)
        {
            TagBuilder tb = new TagBuilder("a");

            tb.AddClassName("btn");
            tb.AddClassName(theme.ToClassName("btn"));
        }
Пример #2
0
 private static string ToClassName(this BootstrapColorTheme theme, BootstrapComponent component)
 {
 }