12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Web.Mvc;
- using Bowin.Web.Controls.Mvc;
- namespace System.Web.Mvc
- {
- public static class PostionBarExtensions
- {
- public static MvcHtmlString PostionBar(this HtmlHelper htmlHelper,
- PostionBarOptions postionBarOptions,
- System.Collections.Generic.Dictionary<string, string> htmlAttributes = null)
- {
- return MvcHtmlString.Create(Bowin.Web.Controls.Mvc.PostionBar.CreateControl(postionBarOptions, htmlAttributes).Render());
- }
- }
- }
|