using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bowin.Web.Controls.Mvc { public class PostionBarOptions : BaseControlOptions { public List ButtonList { get; set; } public List 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)); } } }