public void PopUntil(InspectorStackEntryBase item)
 {
     if (CurrentStackItem == item)
     {
         return;
     }
     while (CurrentStackItem != null && CurrentStackItem != item)
     {
         InspectorStack.Pop();
     }
     LoadStackEntry(CurrentStackItem);
 }
 public void Pop()
 {
     InspectorStack.Pop();
     LoadStackEntry(InspectorStack.Peek());
 }