private void OnAddLayout()
 {
     _messageService.GetValueFromUser("Add Layout", "Specify name of new layout", (newLayoutName) =>
     {
         _projectService.AddLayout(SelectedItem.FullSubPath, newLayoutName);
     });
 }