public MenuSubItem(string iconName, string href, string displayName, MenuSubItem menuSubItem) { SubItems = new List <MenuSubItem>(); if (href == "") { this.Href = "javascript:void(0);"; } else { this.Href = href; } this.IconName = iconName; this.DisplayName = displayName; addMenuSubItem(menuSubItem); }
public MenuSubItem(string iconName, string href, string displayName, MenuSubItem menuSubItem) { SubItems = new List<MenuSubItem>(); if (href == "") { this.Href = "javascript:void(0);"; } else { this.Href = href; } this.IconName = iconName; this.DisplayName = displayName; addMenuSubItem(menuSubItem); }
public void addMenuSubItem(MenuSubItem msi) { subItems.Add(msi); }