コード例 #1
0
ファイル: BootstrapExtensions.cs プロジェクト: effun/nabla
        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"));
        }