public bool AddTutorialPreview(string xmlPath, string rootPath)
        {
            TutorialContainer tutoPreview = new TutorialContainer(xmlPath, rootPath);
            if (tutoPreview.ReadInfo())
            {
                this.TutorialsWrapPanel.Children.Add(tutoPreview);
                return true;
            }

            return false;
        }
        public bool AddTutorialPreview(string xmlPath, string rootPath)
        {
            TutorialContainer tutoPreview = new TutorialContainer(xmlPath, rootPath);

            if (tutoPreview.ReadInfo())
            {
                this.TutorialsWrapPanel.Children.Add(tutoPreview);
                return(true);
            }

            return(false);
        }