protected virtual void OnItemSaved(SolutionItemEventArgs e)
 {
     if (ParentFolder == null && ParentSolution != null)
     {
         ParentSolution.OnEntrySaved(e);
     }
     if (ItemSaved != null)
     {
         ItemSaved(this, e);
     }
 }