public TreeNodeWixShortcutCollection(WixShortcutCollection node)
     : base(node)
 {
     ImageIndex         = TreeViewWix.IMG_SHORTCUTS;
     SelectedImageIndex = ImageIndex;
     Nodes.Add(new CLoader());
 }
        public void OnLoadNextLevel(NodeLoader loader)
        {
            _nextLevelLoaded = true;
            WixShortcutCollection shortcuts = this.ShortcutNodes;

            if (shortcuts != null && shortcuts.Shortcuts.Count > 0)
            {
                foreach (WixShortcut s in shortcuts.Shortcuts)
                {
                    TreeNodeWixShortcut sn = new TreeNodeWixShortcut(s);
                    Nodes.Add(sn);
                }
            }
        }