12 references to GetDesignerType
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemExtensions.cs (1)
762var designerType = this.ViewService.GetDesignerType(p.ItemType);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelSearchServiceImpl.cs (2)
225return includeOtherObjects || (typeof(WorkflowViewElement).IsAssignableFrom(viewService.GetDesignerType(type))); 774Type designerType = viewService.GetDesignerType(itemToFocus.ItemType);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (1)
403|| (!typeof(WorkflowViewElement).IsAssignableFrom(viewService.GetDesignerType(currentModelItem.ItemType)))
System.Activities.Presentation\System\Activities\Presentation\Validation\ValidationService.cs (1)
903bool hasDesignerAttribute = this.ViewService.GetDesignerType(parent.ItemType) != null;
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (3)
453return (typeof(WorkflowViewElement).IsAssignableFrom(viewService.GetDesignerType(current.ItemType))); 552Type designerType = viewService.GetDesignerType(modelItem.ItemType); 557designerType = viewService.GetDesignerType(modelItem.ItemType);
System.Activities.Presentation\System\Activities\Presentation\View\ViewUtilities.cs (3)
63Type viewType = viewService.GetDesignerType(item.ItemType); 70Type viewType = viewService.GetDesignerType(modelItem.ItemType); 173return GetViewService(context).GetDesignerType(parent.ItemType);
System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewService.cs (1)
220Type designerType = this.GetDesignerType(modelItem.ItemType);