PostionBarOptions.cs 715 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Bowin.Web.Controls.Mvc
  6. {
  7. public class PostionBarOptions : BaseControlOptions
  8. {
  9. public List<PostionBarButton> ButtonList { get; set; }
  10. public List<ToolbarButton> ToolButtonList { get; set; }
  11. public string NavIconUrl { get; set; }
  12. public string PostionInnerHtml { get; set; }
  13. public PostionBarOptions()
  14. : base()
  15. {
  16. NavIconUrl = "/Content/themes/metro-blue/sysImages/Nav.gif";
  17. if (string.IsNullOrEmpty(ID))
  18. ID = string.Format("PostionBar_{0}", Guid.NewGuid().ToString().Replace("-", "").Substring(0, 6));
  19. }
  20. }
  21. }