/// <summary>
        /// Initializes a new instance of the CrumbBarViewContainer class.
        /// </summary>
        public CrumbBarViewContainer()
            : base()
        {
            LabelItem imageLabel = new LabelItem("sys_crumbbarimagelabel");
            this.SubItems.Add(imageLabel);

            CrumbBarOverflowButton overflowButton = new CrumbBarOverflowButton("sys_crumbbaroverflowbutton");
            this.SubItems.Add(overflowButton);
            m_IsContainer = true;
        }
 /// <summary>
 /// Returns copy of ExplorerBarContainerItem item
 /// </summary>
 public override BaseItem Copy()
 {
     CrumbBarOverflowButton objCopy = new CrumbBarOverflowButton();
     this.CopyToItem(objCopy);
     return objCopy;
 }