12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class PostionBarOptions : BaseControlOptions
- {
- public List<PostionBarButton> ButtonList { get; set; }
- public List<ToolbarButton> ToolButtonList { get; set; }
- public string NavIconUrl { get; set; }
- public string PostionInnerHtml { get; set; }
- public PostionBarOptions()
- : base()
- {
- NavIconUrl = "/Content/themes/metro-blue/sysImages/Nav.gif";
- if (string.IsNullOrEmpty(ID))
- ID = string.Format("PostionBar_{0}", Guid.NewGuid().ToString().Replace("-", "").Substring(0, 6));
- }
- }
- }
|