Beispiel #1
0
        public static IHtmlString DropDownMenu(this HtmlHelper helper, IEnumerable <DropDownMenuItem> items, string logoUrl = "", object htmlAttributes = null)
        {
            DropDownMenu result = new DropDownMenu(items, logoUrl, htmlAttributes);

            return(new HtmlString(result.Render()));
        }